1234567891011121314151617181920 |
- /*
- * Copyright (c) 2024, Kostya Farber <kostya.farber@gmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <LibWeb/Layout/LegendBox.h>
- 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;
- }
|