mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 02:27:19 +02:00
This change takes all existing WebIDL files in the repo that had definition lines without four leading spaces, and fixes them so they have four leading spaces.
13 lines
360 B
Plaintext
13 lines
360 B
Plaintext
#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;
|