/* * Copyright (c) 2026, Tim Ledbetter * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::Layout { GC_DEFINE_ALLOCATOR(SVGPatternBox); SVGPatternBox::SVGPatternBox(DOM::Document& document, SVG::SVGPatternElement& element, GC::Ref style) : SVGBox(document, element, style) { } GC::Ptr SVGPatternBox::create_paintable() const { return Painting::SVGPatternPaintable::create(*this); } }