mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 09:52:31 +00:00
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
10 lines
245 B
Text
10 lines
245 B
Text
#import <DOM/Element.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
#import <HTML/DOMStringMap.idl>
|
|
|
|
// https://svgwg.org/svg2-draft/types.html#InterfaceSVGElement
|
|
[Exposed=Window]
|
|
interface SVGElement : Element {
|
|
};
|
|
|
|
SVGElement includes HTMLOrSVGElement;
|