CSSRuleList : Object
A list of %%/CSSRule|CSSRules%%. Returned from the
%%/CSSStyleSheet#cssRules|**CSSStyleSheet.cssRules**%% property.
Spec:
http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSRuleList
----
instance.length : Number
The number of CSSRules in the list.
foo
ReadOnly:
true
----
instance[index : Number] : CSSRule
Returns the CSSRule at the specified **index**. You can also use the
%%#item|**item()**%% method to retrieve the item.
foo
ReadOnly:
true
----
prototype.item(index : Number) : CSSRule
Same as %%#indexer_Number|**this[index]**%%.