2023-01-14 14:48:20 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/Layout/TableWrapper.h>
|
|
|
|
|
|
|
|
namespace Web::Layout {
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(TableWrapper);
|
2024-04-06 10:16:04 -07:00
|
|
|
|
2024-12-20 16:35:12 +01:00
|
|
|
TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, GC::Ref<CSS::ComputedProperties> style)
|
2023-01-14 14:48:20 +01:00
|
|
|
: BlockContainer(document, node, move(style))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-01-27 08:38:27 +01:00
|
|
|
TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, NonnullOwnPtr<CSS::ComputedValues> computed_values)
|
2023-01-14 14:48:20 +01:00
|
|
|
: BlockContainer(document, node, move(computed_values))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TableWrapper::~TableWrapper() = default;
|
|
|
|
|
|
|
|
}
|