WebIDLpedia

SVGStyleElement interface

Definition

Scalable Vector Graphics (SVG) 2 defines SVGStyleElement



[Exposed=Window]
interface SVGStyleElement : SVGElement {
  [Reflect] attribute DOMString type;
  [Reflect] attribute DOMString media;
  [Reflect] attribute DOMString title;
  attribute boolean disabled;
};

SVGStyleElement includes LinkStyle;
Consolidated IDL (across mixin and partials)


[Exposed=Window]
interface SVGStyleElement : SVGElement {
  [Reflect] attribute DOMString type;
  [Reflect] attribute DOMString media;
  [Reflect] attribute DOMString title;
  attribute boolean disabled;
  readonly attribute CSSStyleSheet? sheet;
};