Files
serenity/Userland/Libraries/LibWeb/SVG/SVGScriptElement.idl
Jamie Mansfield be8a46f0b8 LibWeb/SVG: SVGScriptElement includes SVGURIReference
(cherry picked from commit fbb5bc471d90d2d0880dcba9aeb3574009ff2100)
2024-07-21 16:55:11 -04:00

13 lines
411 B
Plaintext

#import <HTML/Scripting/Fetching.idl>
#import <SVG/SVGElement.idl>
#import <SVG/SVGURIReference.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;
};
SVGScriptElement includes SVGURIReference;