ladybird/Userland/Libraries/LibWeb/CSS/CSSRuleList.idl

10 lines
184 B
Text
Raw Normal View History

#import <CSS/CSSRule.idl>
2022-08-07 13:51:40 +02:00
[Exposed=Window, NoInstanceWrapper]
interface CSSRuleList {
getter CSSRule? item(unsigned long index);
readonly attribute unsigned long length;
};