2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-03-07 10:32:51 +01:00
|
|
|
#include <LibWeb/DOM/Element.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/TableBox.h>
|
2019-10-17 23:09:41 +02:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2021-01-07 16:37:51 +01:00
|
|
|
TableBox::TableBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
|
2021-10-06 20:02:41 +02:00
|
|
|
: Layout::BlockContainer(document, element, move(style))
|
2021-01-07 16:37:51 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TableBox::TableBox(DOM::Document& document, DOM::Element* element, CSS::ComputedValues computed_values)
|
2021-10-06 20:02:41 +02:00
|
|
|
: Layout::BlockContainer(document, element, move(computed_values))
|
2019-10-17 23:09:41 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
TableBox::~TableBox() = default;
|
2019-10-17 23:09:41 +02:00
|
|
|
|
2020-03-07 10:27:02 +01:00
|
|
|
}
|