2023-11-05 01:48:01 +01:00
|
|
|
#import <HTML/Scripting/Fetching.idl>
|
2023-11-08 11:04:56 -07:00
|
|
|
#import <SVG/SVGElement.idl>
|
2024-07-16 13:49:28 +01:00
|
|
|
#import <SVG/SVGURIReference.idl>
|
2023-11-05 01:48:01 +01:00
|
|
|
|
2023-09-23 08:56:49 +12:00
|
|
|
// https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
|
|
|
|
[Exposed=Window]
|
|
|
|
interface SVGScriptElement : SVGElement {
|
|
|
|
[Reflect] attribute DOMString type;
|
2023-11-05 01:48:01 +01:00
|
|
|
[Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
|
2023-09-23 08:56:49 +12:00
|
|
|
};
|
|
|
|
|
2024-07-16 13:49:28 +01:00
|
|
|
SVGScriptElement includes SVGURIReference;
|