/* * Copyright (c) 2020, Matthew Olsson * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::Layout { SVGGraphicsBox::SVGGraphicsBox(DOM::Document& document, SVG::SVGGraphicsElement& element, GC::Ref style) : SVGBox(document, element, style) { } GC::Ptr SVGGraphicsBox::create_paintable() const { return Painting::SVGGraphicsPaintable::create(*this); } }