LibWeb: Stop using percentage column widths in compute_table_measures
This commit is contained in:
parent
b44d977bf8
commit
9b6fcd8591
Notes:
sideshowbarker
2024-07-17 01:43:09 +09:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/SerenityOS/serenity/commit/9b6fcd8591 Pull-request: https://github.com/SerenityOS/serenity/pull/17011
1 changed files with 8 additions and 2 deletions
|
@ -127,7 +127,9 @@ void TableFormattingContext::compute_table_measures()
|
|||
if (!computed_values.min_width().is_auto())
|
||||
min_width = max(min_width, computed_values.min_width().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box));
|
||||
|
||||
CSSPixels max_width = computed_values.width().is_auto() ? max_content_width.value() : width;
|
||||
// NOTE: percentage column width cannot be used because it cannot be resolved correctly
|
||||
// when final table width is not known yet
|
||||
CSSPixels max_width = !computed_values.width().is_length() ? max_content_width.value() : width;
|
||||
if (!computed_values.max_width().is_none())
|
||||
max_width = min(max_width, computed_values.max_width().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box));
|
||||
|
||||
|
@ -140,7 +142,11 @@ void TableFormattingContext::compute_table_measures()
|
|||
}
|
||||
|
||||
cell.min_width = min_width + cell_intrinsic_offsets;
|
||||
cell.max_width = max(max(width, min_width), max_width) + cell_intrinsic_offsets;
|
||||
if (!computed_values.width().is_percentage()) {
|
||||
cell.max_width = max(max(width, min_width), max_width) + cell_intrinsic_offsets;
|
||||
} else {
|
||||
cell.max_width = max(min_width, max_width) + cell_intrinsic_offsets;
|
||||
}
|
||||
|
||||
max_cell_column_span = max(max_cell_column_span, cell.column_span);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue