mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
12 lines
411 B
Text
12 lines
411 B
Text
#import <HTML/Scripting/Fetching.idl>
|
|
#import <SVG/SVGElement.idl>
|
|
#import <SVG/SVGURIReference.idl>
|
|
|
|
// https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
|
|
[Exposed=Window]
|
|
interface SVGScriptElement : SVGElement {
|
|
[Reflect] attribute DOMString type;
|
|
[Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
|
|
};
|
|
|
|
SVGScriptElement includes SVGURIReference;
|