ladybird/Userland/Libraries/LibWeb/SVG/SVGScriptElement.idl

9 lines
285 B
Text
Raw Normal View History

// https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
[Exposed=Window]
interface SVGScriptElement : SVGElement {
[Reflect] attribute DOMString type;
[Reflect=crossorigin] attribute DOMString? crossOrigin;
};
// FIXME: SVGScriptElement includes SVGURIReference;