/* * Copyright (c) 2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::Layout { SVGTextPathBox::SVGTextPathBox(DOM::Document& document, SVG::SVGTextPathElement& element, CSS::ComputedProperties const& style) : SVGGraphicsBox(document, element, style) { } RefPtr SVGTextPathBox::create_paintable() const { return Painting::SVGPathPaintable::create(*this); } }