2020-06-09 16:08:15 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-09 16:08:15 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
#include <LibWeb/Layout/BlockBox.h>
|
2020-06-09 16:08:15 -03:00
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
namespace Web::Layout {
|
2020-06-09 16:08:15 -03:00
|
|
|
|
2020-11-22 11:53:01 -03:00
|
|
|
class TableRowGroupBox final : public BlockBox {
|
2020-06-09 16:08:15 -03:00
|
|
|
public:
|
2020-11-22 11:53:01 -03:00
|
|
|
TableRowGroupBox(DOM::Document&, DOM::Element&, NonnullRefPtr<CSS::StyleProperties>);
|
|
|
|
|
virtual ~TableRowGroupBox() override;
|
2020-06-09 16:08:15 -03:00
|
|
|
|
2020-06-12 19:12:23 -03:00
|
|
|
size_t column_count() const;
|
2020-06-09 16:08:15 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|