SVGScriptElement.idl 411 B

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