mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
10 lines
342 B
Plaintext
10 lines
342 B
Plaintext
#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;
|
|
};
|