mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 19:05:08 +00:00
12 lines
354 B
Text
12 lines
354 B
Text
#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;
|