2020-06-09 21:08:15 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-09 21:08:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/DOM/Element.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/TableCellBox.h>
|
|
|
|
|
#include <LibWeb/Layout/TableRowBox.h>
|
|
|
|
|
#include <LibWeb/Layout/TableRowGroupBox.h>
|
2020-06-09 21:08:15 +02:00
|
|
|
|
2020-11-22 15:53:01 +01:00
|
|
|
namespace Web::Layout {
|
2020-06-09 21:08:15 +02:00
|
|
|
|
2022-02-23 20:25:35 +00:00
|
|
|
TableRowGroupBox::TableRowGroupBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
|
2023-01-09 07:17:28 +03:00
|
|
|
: Layout::Box(document, element, move(style))
|
2020-06-09 21:08:15 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
TableRowGroupBox::~TableRowGroupBox() = default;
|
2020-06-09 21:08:15 +02:00
|
|
|
|
|
|
|
|
}
|