2023-03-20 19:31:13 +01:00
|
|
|
#import <CSS/ElementCSSInlineStyle.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
#import <DOM/Element.idl>
|
2024-11-14 16:25:38 +01:00
|
|
|
#import <DOM/EventHandler.idl>
|
|
|
|
|
#import <HTML/HTMLOrSVGElement.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/DOMStringMap.idl>
|
2024-07-09 20:59:00 +01:00
|
|
|
#import <SVG/SVGAnimatedString.idl>
|
2024-07-16 11:26:25 +01:00
|
|
|
#import <SVG/SVGSVGElement.idl>
|
2022-02-15 22:40:51 +03:30
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement
|
|
|
|
|
[Exposed=Window]
|
2020-10-02 20:57:28 +01:00
|
|
|
interface SVGElement : Element {
|
2024-07-09 20:59:00 +01:00
|
|
|
|
|
|
|
|
[SameObject] readonly attribute SVGAnimatedString className;
|
2024-07-09 21:01:03 +01:00
|
|
|
|
2024-07-16 11:26:25 +01:00
|
|
|
readonly attribute SVGSVGElement? ownerSVGElement;
|
2025-05-09 01:05:03 +02:00
|
|
|
readonly attribute SVGElement? viewportElement;
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|
2022-03-30 23:53:56 +03:00
|
|
|
|
2024-07-09 20:20:05 +01:00
|
|
|
SVGElement includes GlobalEventHandlers;
|
2022-03-30 23:53:56 +03:00
|
|
|
SVGElement includes HTMLOrSVGElement;
|
2023-03-20 19:31:13 +01:00
|
|
|
SVGElement includes ElementCSSInlineStyle;
|