LibWeb: Remove inheritance of TableRowGroupBox from BlockContainer

Having `TableRowGroupBox` not inherited from `BlockContainer`
allows to write more simpler layout code.
This commit is contained in:
Aliaksandr Kalenik 2023-01-09 07:17:28 +03:00 committed by Andreas Kling
commit c8337e9ee8
Notes: sideshowbarker 2024-07-17 03:30:41 +09:00
3 changed files with 7 additions and 10 deletions

View file

@ -12,7 +12,7 @@
namespace Web::Layout {
TableRowGroupBox::TableRowGroupBox(DOM::Document& document, DOM::Element* element, NonnullRefPtr<CSS::StyleProperties> style)
: Layout::BlockContainer(document, element, move(style))
: Layout::Box(document, element, move(style))
{
}