mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 00:17:46 +00:00
LibWeb: Add SVG <line>
element and test case :^)
This commit is contained in:
parent
3a1a35ef8f
commit
17912330c4
11 changed files with 126 additions and 0 deletions
|
@ -257,6 +257,8 @@
|
|||
#include <LibWeb/Bindings/SVGGeometryElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGGraphicsElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGGraphicsElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGLineElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGLineElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGPathElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGPathElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGRectElementConstructor.h>
|
||||
|
@ -442,6 +444,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(SVGEllipseElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGGeometryElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGGraphicsElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGLineElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGPathElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGRectElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGSVGElement) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue