mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:47:45 +00:00
LibWeb: Add SVGDefsElement
* Similarly to clipPath, this doesn't need to get rendered, so return no LayoutNode.
This commit is contained in:
parent
55e9192886
commit
bd90498332
8 changed files with 62 additions and 0 deletions
|
@ -269,6 +269,8 @@
|
|||
#include <LibWeb/Bindings/SVGCircleElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGClipPathElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGClipPathElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGDefsElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGDefsElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGEllipseElementConstructor.h>
|
||||
|
@ -487,6 +489,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(SVGElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGCircleElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGClipPathElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGDefsElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGEllipseElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGGeometryElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGGraphicsElement) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue