/* * Copyright (c) 2024, Kostya Farber * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::Layout { GC_DEFINE_ALLOCATOR(LegendBox); LegendBox::LegendBox(DOM::Document& document, DOM::Element& element, CSS::StyleProperties style) : BlockContainer(document, &element, move(style)) { } LegendBox::~LegendBox() = default; }