mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
11 lines
308 B
Text
11 lines
308 B
Text
#import <CSS/CSSRule.idl>
|
|
#import <CSS/CSSStyleDeclaration.idl>
|
|
|
|
// https://drafts.csswg.org/cssom/#the-cssstylerule-interface
|
|
[Exposed=Window]
|
|
interface CSSStyleRule : CSSRule {
|
|
|
|
attribute CSSOMString selectorText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
|
|
|
};
|