SVGStyleElement.idl 354 B

123456789101112
  1. #import <CSS/LinkStyle.idl>
  2. #import <SVG/SVGElement.idl>
  3. // https://svgwg.org/svg2-draft/single-page.html#styling-InterfaceSVGStyleElement
  4. [Exposed=Window]
  5. interface SVGStyleElement : SVGElement {
  6. [Reflect] attribute DOMString type;
  7. [Reflect] attribute DOMString media;
  8. [Reflect] attribute DOMString title;
  9. };
  10. SVGStyleElement includes LinkStyle;