LibWeb: Layout table rows that do not belong to table row group

This commit is contained in:
Aliaksandr Kalenik 2022-12-09 12:44:38 +03:00 committed by Andreas Kling
parent b8f1e1bed2
commit c302c4081b
Notes: sideshowbarker 2024-07-17 23:02:37 +09:00

View file

@ -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);
}