1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

LibWeb: Fix upper limit of span when computing column measures

The maximum span limit has to be inclusive, not exclusive.
This commit is contained in:
Andi Gallo 2023-06-10 00:55:02 +00:00 committed by Andreas Kling
parent 940d9b98ae
commit 50df78d2a2
3 changed files with 73 additions and 1 deletions

View file

@ -201,7 +201,7 @@ void TableFormattingContext::compute_table_measures()
}
}
for (size_t current_column_span = 2; current_column_span < max_cell_column_span; current_column_span++) {
for (size_t current_column_span = 2; current_column_span <= max_cell_column_span; current_column_span++) {
// https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
Vector<Vector<CSSPixels>> cell_min_contributions_by_column_index;
cell_min_contributions_by_column_index.resize(m_columns.size());