ladybird/Userland/Libraries/LibWeb/CSS/CSSRuleList.idl
Sam Atkins 97a78cdd28 LibWeb: Add CSSRuleList
"The CSSRuleList interface represents an ordered collection of CSS style
rules." - https://www.w3.org/TR/cssom-1/#the-cssrulelist-interface
2021-09-29 18:57:48 +02:00

4 lines
119 B
Text

interface CSSRuleList {
getter CSSRule? item(unsigned long index);
readonly attribute unsigned long length;
};