mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-27 19:07:24 +00:00
"The CSSRuleList interface represents an ordered collection of CSS style rules." - https://www.w3.org/TR/cssom-1/#the-cssrulelist-interface
5 lines
119 B
Plaintext
5 lines
119 B
Plaintext
interface CSSRuleList {
|
|
getter CSSRule? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
};
|