Newer
Older
minerva / Userland / Libraries / LibWeb / SVG / SVGStyleElement.idl
@minerva minerva on 13 Jul 360 bytes Initial commit
#import <CSS/LinkStyle.idl>
#import <SVG/SVGElement.idl>

// https://svgwg.org/svg2-draft/single-page.html#styling-InterfaceSVGStyleElement
[Exposed=Window]
interface SVGStyleElement : SVGElement {
    [Reflect] attribute DOMString type;
    [Reflect] attribute DOMString media;
    [Reflect] attribute DOMString title;
};

SVGStyleElement includes LinkStyle;