mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:07:36 +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
|
@ -76,6 +76,7 @@ public:
|
|||
virtual bool is_svg_container() const { return false; }
|
||||
virtual bool is_svg_element() const { return false; }
|
||||
virtual bool is_svg_graphics_element() const { return false; }
|
||||
virtual bool is_svg_script_element() const { return false; }
|
||||
virtual bool is_svg_svg_element() const { return false; }
|
||||
virtual bool is_svg_use_element() const { return false; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue