mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
8f110e0fb1
No interfaces require wrappers anymore, so we can just make this the default mode.
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;
|
|
|
|
};
|