mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:18:14 +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
7
Tests/LibWeb/Text/input/SVG/svg-script-element.html
Normal file
7
Tests/LibWeb/Text/input/SVG/svg-script-element.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<script src="../include.js"></script>
|
||||
<svg xmlns="http://www.w3.org/2000/svg"><script id="svg-script-element"></script></svg>
|
||||
<script>
|
||||
test(() => {
|
||||
println(`Name = ${document.getElementById('svg-script-element').constructor.name}`);
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue