mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 18:00:31 +00:00
12 lines
424 B
Text
12 lines
424 B
Text
#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;
|