/* * Copyright (c) 2024, Tim Ledbetter * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace Web::Layout { SVGImageBox::SVGImageBox(DOM::Document& document, SVG::SVGGraphicsElement& element, NonnullRefPtr properties) : SVGGraphicsBox(document, element, properties) { } JS::GCPtr SVGImageBox::create_paintable() const { return Painting::ImagePaintable::create(*this); } }