mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
13 lines
424 B
Plaintext
13 lines
424 B
Plaintext
#import <HTML/Scripting/Fetching.idl>
|
|
#import <SVG/SVGElement.idl>
|
|
#import <SVG/SVGURIReference.idl>
|
|
|
|
// https://w3c.github.io/svgwg/svg2-draft/interact.html#InterfaceSVGScriptElement
|
|
[Exposed=Window]
|
|
interface SVGScriptElement : SVGElement {
|
|
[Reflect] attribute DOMString type;
|
|
[Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
|
|
};
|
|
|
|
SVGScriptElement includes SVGURIReference;
|