ladybird/Userland/Libraries/LibWeb/SVG/SVGElement.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

13 lines
328 B
Plaintext

#import <CSS/ElementCSSInlineStyle.idl>
#import <DOM/Element.idl>
#import <HTML/HTMLElement.idl>
#import <HTML/DOMStringMap.idl>
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement
[Exposed=Window]
interface SVGElement : Element {
};
SVGElement includes HTMLOrSVGElement;
SVGElement includes ElementCSSInlineStyle;