SVGScriptElement.idl 387 B

1234567891011
  1. #import <HTML/Scripting/Fetching.idl>
  2. #import <SVG/SVGElement.idl>
  3. // https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
  4. [Exposed=Window]
  5. interface SVGScriptElement : SVGElement {
  6. [Reflect] attribute DOMString type;
  7. [Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
  8. };
  9. // FIXME: SVGScriptElement includes SVGURIReference;