diff options
author | Simon Wanner <simon+git@skyrising.xyz> | 2023-03-20 19:31:13 +0100 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-03-20 20:37:40 -0400 |
commit | 03c225b02309872398f977c9a25cc0ea75aff77b (patch) | |
tree | 2f3d01d69d3c87e14c0a7267d227cbfb2b09067d /Userland/Libraries/LibWeb/SVG | |
parent | 63ca149be546d9871f295b2bafae6812a0583c35 (diff) | |
download | serenity-03c225b02309872398f977c9a25cc0ea75aff77b.zip |
LibWeb: Move Element.prototype.style to ElementCSSInlineStyle mixin
Also adds the `PutForwards` extended attribute allowing setting the
style property.
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG')
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGElement.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGElement.idl b/Userland/Libraries/LibWeb/SVG/SVGElement.idl index 6e69c7bd15..09b1e68ce0 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGElement.idl +++ b/Userland/Libraries/LibWeb/SVG/SVGElement.idl @@ -1,3 +1,4 @@ +#import <CSS/ElementCSSInlineStyle.idl> #import <DOM/Element.idl> #import <HTML/HTMLElement.idl> #import <HTML/DOMStringMap.idl> @@ -8,3 +9,4 @@ interface SVGElement : Element { }; SVGElement includes HTMLOrSVGElement; +SVGElement includes ElementCSSInlineStyle; |