mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-26 17:45:15 +02:00
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
#import <CSS/CSSRule.idl>
|
|
#import <CSS/CSSStyleDeclaration.idl>
|
|
|
|
[Exposed=Window]
|
|
interface CSSStyleRule : CSSRule {
|
|
|
|
attribute CSSOMString selectorText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
|
|
};
|