/* * Copyright (c) 2020, Matthew Olsson * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::Layout { SVGSVGBox::SVGSVGBox(DOM::Document& document, SVG::SVGSVGElement& element, NonnullRefPtr properties) : ReplacedBox(document, element, move(properties)) { } RefPtr SVGSVGBox::create_paintable() const { return Painting::SVGSVGPaintable::create(*this); } }