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 {
|
|
|
|
|
|
2024-11-19 10:47:18 -03:00
|
|
|
GC_DEFINE_ALLOCATOR(LegendBox);
|
2024-11-05 05:07:13 -03:00
|
|
|
|
2024-12-20 12:35:12 -03:00
|
|
|
LegendBox::LegendBox(DOM::Document& document, DOM::Element& element, GC::Ref<CSS::ComputedProperties> style)
|
2024-11-05 05:07:13 -03:00
|
|
|
: BlockContainer(document, &element, move(style))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LegendBox::~LegendBox() = default;
|
|
|
|
|
|
|
|
|
|
}
|