1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 17:58:11 +00:00
serenity/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;
};