mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-07 00:20:07 +01:00
11 lines
355 B
Plaintext
11 lines
355 B
Plaintext
#import <CSS/CSSGroupingRule.idl>
|
|
#import <CSS/CSSStyleProperties.idl>
|
|
#import <CSS/StylePropertyMap.idl>
|
|
|
|
// https://drafts.csswg.org/cssom/#the-cssstylerule-interface
|
|
[Exposed=Window]
|
|
interface CSSStyleRule : CSSGroupingRule {
|
|
attribute CSSOMString selectorText;
|
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleProperties style;
|
|
};
|