diff options
author | Andrew Kaster <akaster@serenityos.org> | 2022-09-25 18:04:39 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-01 21:05:32 +0100 |
commit | 320dddde6a382c16a73020e065076909ad61a300 (patch) | |
tree | 09aac0172d27458f752b6c99e38ad022c98e68b3 /Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp | |
parent | 62a8c26b73e874005c94969da9605fb9fd421b3c (diff) | |
download | serenity-320dddde6a382c16a73020e065076909ad61a300.zip |
LibWeb: Remove unecessary dependence on Window from SVG classes
These classes only needed Window to get at its realm. Pass a realm
directly to construct SCG classes.
Diffstat (limited to 'Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp b/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp index 8485f50883..2c56eadce2 100644 --- a/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp +++ b/Userland/Libraries/LibWeb/SVG/SVGGeometryElement.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <LibWeb/HTML/Window.h> +#include <LibWeb/Bindings/Intrinsics.h> #include <LibWeb/Layout/SVGGeometryBox.h> #include <LibWeb/SVG/SVGGeometryElement.h> @@ -13,7 +13,7 @@ namespace Web::SVG { SVGGeometryElement::SVGGeometryElement(DOM::Document& document, DOM::QualifiedName qualified_name) : SVGGraphicsElement(document, move(qualified_name)) { - set_prototype(&window().cached_web_prototype("SVGGeometryElement")); + set_prototype(&Bindings::cached_web_prototype(realm(), "SVGGeometryElement")); } RefPtr<Layout::Node> SVGGeometryElement::create_layout_node(NonnullRefPtr<CSS::StyleProperties> style) @@ -29,7 +29,7 @@ float SVGGeometryElement::get_total_length() JS::NonnullGCPtr<Geometry::DOMPoint> SVGGeometryElement::get_point_at_length(float distance) { (void)distance; - return Geometry::DOMPoint::create_with_global_object(window(), 0, 0, 0, 0); + return Geometry::DOMPoint::construct_impl(realm(), 0, 0, 0, 0); } } |