mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
9 lines
342 B
Text
9 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;
|
|
};
|