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

[Exposed=Window]
interface CSSRuleList {

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

};