ladybird/Libraries/LibWeb/SVG/SVGElement.idl

22 lines
647 B
Text
Raw Normal View History

#import <CSS/ElementCSSInlineStyle.idl>
#import <DOM/Element.idl>
#import <DOM/EventHandler.idl>
#import <HTML/HTMLOrSVGElement.idl>
#import <HTML/DOMStringMap.idl>
2024-07-09 20:59:00 +01:00
#import <SVG/SVGAnimatedString.idl>
#import <SVG/SVGSVGElement.idl>
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement
[Exposed=Window]
interface SVGElement : Element {
2024-07-09 20:59:00 +01:00
[SameObject] readonly attribute SVGAnimatedString className;
readonly attribute SVGSVGElement? ownerSVGElement;
readonly attribute SVGElement? viewportElement;
};
SVGElement includes GlobalEventHandlers;
SVGElement includes HTMLOrSVGElement;
SVGElement includes ElementCSSInlineStyle;