mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibWeb: Add SVG <circle>
element and test case :^)
This commit is contained in:
parent
1dde6a0a2b
commit
21bdcee3c3
Notes:
sideshowbarker
2024-07-17 19:00:36 +09:00
Author: https://github.com/AtkinsSJ
Commit: 21bdcee3c3
Pull-request: https://github.com/SerenityOS/serenity/pull/12444
Reviewed-by: https://github.com/awesomekling
11 changed files with 132 additions and 0 deletions
|
@ -247,6 +247,8 @@
|
|||
#include <LibWeb/Bindings/RangePrototype.h>
|
||||
#include <LibWeb/Bindings/ResizeObserverConstructor.h>
|
||||
#include <LibWeb/Bindings/ResizeObserverPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGCircleElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGCircleElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGElementConstructor.h>
|
||||
#include <LibWeb/Bindings/SVGElementPrototype.h>
|
||||
#include <LibWeb/Bindings/SVGGeometryElementConstructor.h>
|
||||
|
@ -434,6 +436,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(SubmitEvent) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SubtleCrypto) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGElement) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(SVGCircleElement) \
|
||||
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