mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
10 lines
342 B
Text
10 lines
342 B
Text
![]() |
#import <CSS/CSSRule.idl>
|
||
|
#import <CSS/CSSStyleDeclaration.idl>
|
||
|
|
||
|
// https://drafts.csswg.org/css-nesting-1/#cssnesteddeclarations
|
||
|
[Exposed=Window]
|
||
|
interface CSSNestedDeclarations : CSSRule {
|
||
|
// FIXME: Should be a CSSStyleProperties, once we have that
|
||
|
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
|
||
|
};
|