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