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