mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
20 lines
619 B
Text
20 lines
619 B
Text
#import <CSS/ElementCSSInlineStyle.idl>
|
|
#import <DOM/Element.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
#import <HTML/DOMStringMap.idl>
|
|
#import <SVG/SVGAnimatedString.idl>
|
|
#import <SVG/SVGSVGElement.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement
|
|
[Exposed=Window]
|
|
interface SVGElement : Element {
|
|
|
|
[SameObject] readonly attribute SVGAnimatedString className;
|
|
|
|
readonly attribute SVGSVGElement? ownerSVGElement;
|
|
[FIXME] readonly attribute SVGElement? viewportElement;
|
|
};
|
|
|
|
SVGElement includes GlobalEventHandlers;
|
|
SVGElement includes HTMLOrSVGElement;
|
|
SVGElement includes ElementCSSInlineStyle;
|