mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-26 17:45:15 +02:00
10 lines
184 B
Plaintext
10 lines
184 B
Plaintext
#import <CSS/CSSRule.idl>
|
|
|
|
[Exposed=Window, NoInstanceWrapper]
|
|
interface CSSRuleList {
|
|
|
|
getter CSSRule? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
|
|
};
|