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