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-04-06 10:16:04 -07:00
|
|
|
JS_DEFINE_ALLOCATOR(TableWrapper);
|
|
|
|
|
2024-10-26 17:42:27 +02:00
|
|
|
TableWrapper::TableWrapper(DOM::Document& document, DOM::Node* node, CSS::StyleProperties 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;
|
|
|
|
|
|
|
|
}
|