1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibWeb: Make SVGLength and SVGAnimatedLength GC-allocated

This commit is contained in:
Andreas Kling 2022-09-02 14:04:59 +02:00
parent 16fbb91aa1
commit 3905d54a9c
14 changed files with 139 additions and 126 deletions

View file

@ -159,7 +159,7 @@ libweb_js_wrapper(IntersectionObserver/IntersectionObserver)
libweb_js_wrapper(NavigationTiming/PerformanceTiming NO_INSTANCE)
libweb_js_wrapper(RequestIdleCallback/IdleDeadline)
libweb_js_wrapper(ResizeObserver/ResizeObserver)
libweb_js_wrapper(SVG/SVGAnimatedLength)
libweb_js_wrapper(SVG/SVGAnimatedLength NO_INSTANCE)
libweb_js_wrapper(SVG/SVGClipPathElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGDefsElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGElement NO_INSTANCE)
@ -167,7 +167,7 @@ libweb_js_wrapper(SVG/SVGGeometryElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGGraphicsElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGCircleElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGEllipseElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGLength)
libweb_js_wrapper(SVG/SVGLength NO_INSTANCE)
libweb_js_wrapper(SVG/SVGLineElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGPathElement NO_INSTANCE)
libweb_js_wrapper(SVG/SVGPolygonElement NO_INSTANCE)