mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:28:11 +00:00
LibWeb: Add IDL definition for SVGScriptElement
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().
This commit is contained in:
parent
60c32f39a1
commit
07b332e17c
9 changed files with 78 additions and 0 deletions
8
Userland/Libraries/LibWeb/SVG/SVGScriptElement.idl
Normal file
8
Userland/Libraries/LibWeb/SVG/SVGScriptElement.idl
Normal file
|
@ -0,0 +1,8 @@
|
|||
// 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;
|
Loading…
Add table
Add a link
Reference in a new issue