1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

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

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