mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:47:35 +00:00
LibWeb: Add SVG <ellipse>
element and test case :^)
This commit is contained in:
parent
21bdcee3c3
commit
3a1a35ef8f
10 changed files with 139 additions and 0 deletions
|
@ -251,6 +251,8 @@
|
|||
#include <LibWeb/Bindings/SVGCircleElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGEllipseElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGEllipseElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGGeometryElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGGeometryElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGGraphicsElementConstructor.h>
|
||||
|
@ -437,6 +439,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(SubtleCrypto) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGCircleElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGEllipseElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGGeometryElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGGraphicsElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGPathElement) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue