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