diff options
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.cpp index 0baf1444a4..1b19fc0a8f 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<TableRowBox>([&](auto& row) { + process_row(row); + return IterationDecision::Continue; + }); + m_columns.resize(x_width); } |