/* * Copyright (c) 2024, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::Painting { JS::NonnullGCPtr SVGMaskPaintable::create(Layout::SVGMaskBox const& layout_box) { return layout_box.heap().allocate_without_realm(layout_box); } SVGMaskPaintable::SVGMaskPaintable(Layout::SVGMaskBox const& layout_box) : SVGGraphicsPaintable(layout_box) { } }