mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 18:35:07 +00:00

It does not currently handle any of the actual scripting, but this should at least allow us to create an instance of the element. The test being added here isn't actually testing much, but before the previous commit we used to crash parsing the page due to a TODO().
8 lines
285 B
Text
8 lines
285 B
Text
// https://www.w3.org/TR/SVG/interact.html#InterfaceSVGScriptElement
|
|
[Exposed=Window]
|
|
interface SVGScriptElement : SVGElement {
|
|
[Reflect] attribute DOMString type;
|
|
[Reflect=crossorigin] attribute DOMString? crossOrigin;
|
|
};
|
|
|
|
// FIXME: SVGScriptElement includes SVGURIReference;
|