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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-01-09 07:17:28 +03:00
|
|
|
#include <LibWeb/Layout/Box.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
|
|
|
|
2023-01-09 07:17:28 +03:00
|
|
|
class TableRowGroupBox final : public Box {
|
|
|
|
|
JS_CELL(TableRowGroupBox, Box);
|
2022-10-17 14:41:50 +02:00
|
|
|
|
2020-06-09 21:08:15 +02:00
|
|
|
public:
|
2022-02-23 20:25:35 +00:00
|
|
|
TableRowGroupBox(DOM::Document&, DOM::Element*, NonnullRefPtr<CSS::StyleProperties>);
|
2020-11-22 15:53:01 +01:00
|
|
|
virtual ~TableRowGroupBox() override;
|
2020-06-09 21:08:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|