2024-11-05 05:07:13 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2024, Kostya Farber <kostya.farber@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Layout/LegendBox.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Layout {
|
|
|
|
|
|
2026-06-06 09:03:41 -03:00
|
|
|
LegendBox::LegendBox(DOM::Document& document, DOM::Element& element, CSS::ComputedProperties const& style)
|
|
|
|
|
: BlockContainer(document, &element, style)
|
2024-11-05 05:07:13 -03:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LegendBox::~LegendBox() = default;
|
|
|
|
|
|
|
|
|
|
}
|