Definition
Scalable Vector Graphics (SVG) 2 defines SVGStyleElement
[Exposed=Window]
interface SVGStyleElement : SVGElement {
attribute DOMString type;
attribute DOMString media;
attribute DOMString title;
};
SVGStyleElement includes LinkStyle;
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface SVGStyleElement : SVGElement {
attribute DOMString type;
attribute DOMString media;
attribute DOMString title;
readonly attribute CSSStyleSheet? sheet;
};