summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/CSSRuleList.idl
blob: cd995bd13898caeff6a720303774de8ca753160d (plain)
1
2
3
4
5
6
7
8
9
#import <CSS/CSSRule.idl>

[Exposed=Window, NoInstanceWrapper]
interface CSSRuleList {

    getter CSSRule? item(unsigned long index);
    readonly attribute unsigned long length;

};