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