
"The CSSRuleList interface represents an ordered collection of CSS style rules." - https://www.w3.org/TR/cssom-1/#the-cssrulelist-interface
4 lines
119 B
Text
4 lines
119 B
Text
interface CSSRuleList {
|
|
getter CSSRule? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
};
|