Newer
Older
minerva / Userland / Libraries / LibWeb / CSS / CSSNestedDeclarations.idl
@minerva minerva on 13 Jul 342 bytes Initial commit
#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;
};