From c302c4081b937ee696b12684fe0723a34d0589c8 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Fri, 9 Dec 2022 12:44:38 +0300 Subject: [PATCH] LibWeb: Layout table rows that do not belong to table row group --- Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp index 0baf1444a4b..1b19fc0a8f1 100644 --- a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp @@ -93,6 +93,11 @@ void TableFormattingContext::calculate_row_column_grid(Box const& box) }); }); + box.template for_each_child_of_type([&](auto& row) { + process_row(row); + return IterationDecision::Continue; + }); + m_columns.resize(x_width); }