ladybird/Libraries/LibWeb/SVG/SVGScriptElement.idl

13 lines
411 B
Text
Raw Normal View History

#import <HTML/Scripting/Fetching.idl>
2023-11-08 11:04:56 -07:00
#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;