Skip to content

Commit

Permalink
Fix typo in percentage widths
Browse files Browse the repository at this point in the history
  • Loading branch information
Loirooriol committed Jan 25, 2024
1 parent 3c96067 commit 7b4e989
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 15 deletions.
2 changes: 1 addition & 1 deletion components/layout_2020/table/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ impl<'a> TableLayout<'a> {
.0
.min(100. - total_intrinsic_percentage_width);
total_intrinsic_percentage_width += final_intrinsic_percentage_width;
column_measure.percentage_width = Percentage(total_intrinsic_percentage_width);
column_measure.percentage_width = Percentage(final_intrinsic_percentage_width);
}

self.column_measures = column_measures;
Expand Down
2 changes: 0 additions & 2 deletions tests/wpt/meta/css/CSS2/floats-clear/floats-149.xht.ini

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@
[table 7]
expected: FAIL

[table 8]
expected: FAIL

[table 9]
expected: FAIL

Expand Down

0 comments on commit 7b4e989

Please sign in to comment.