mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
12 lines
387 B
Plaintext
12 lines
387 B
Plaintext
#import <HTML/Scripting/Fetching.idl>
|
|
#import <SVG/SVGElement.idl>
|
|
|
|
// https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
|
|
[Exposed=Window]
|
|
interface SVGScriptElement : SVGElement {
|
|
[Reflect] attribute DOMString type;
|
|
[Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
|
|
};
|
|
|
|
// FIXME: SVGScriptElement includes SVGURIReference;
|