Definition
Scalable Vector Graphics (SVG) 2 defines SVGScriptElement
[Exposed=Window]
interface SVGScriptElement : SVGElement {
attribute DOMString type;
attribute DOMString? crossOrigin;
};
SVGScriptElement includes SVGURIReference;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface SVGScriptElement : SVGElement {
attribute DOMString type;
attribute DOMString? crossOrigin;
[SameObject] readonly attribute SVGAnimatedString href;
};
Methods and attributes that return objects implementing SVGScriptElement
Referring specifications
- HTML Standard refers to
SVGScriptElement