ladybird/Userland/Libraries/LibWeb/CSS/ElementCSSInlineStyle.idl
Simon Wanner 03c225b023 LibWeb: Move Element.prototype.style to ElementCSSInlineStyle mixin
Also adds the `PutForwards` extended attribute allowing setting the
style property.
2023-03-20 20:37:40 -04:00

7 lines
267 B
Plaintext

#import <CSS/CSSStyleDeclaration.idl>
// https://w3c.github.io/csswg-drafts/cssom/#elementcssinlinestyle
interface mixin ElementCSSInlineStyle {
[SameObject, PutForwards=cssText, ImplementedAs=style_for_bindings] readonly attribute CSSStyleDeclaration style;
};