forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1710116 - Use more saturating nscoord arithmetic in BasicTableLay…
…outStrategy::DistributeISizeToColumns. r=emilio This avoids potentially computing col_iSize values greater than nsccoord_MAX, which will confuse a subsequent NSCoordSaturatingSubtract. Differential Revision: https://phabricator.services.mozilla.com/D115684
- Loading branch information
Showing
3 changed files
with
36 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<style> | ||
#tbody { | ||
display: inline-flex; | ||
} | ||
|
||
* { | ||
inline-size: 3579845520.820976vw; | ||
} | ||
</style> | ||
</head> | ||
<table> | ||
<td colspan="149"> | ||
<tbody id="tbody"> | ||
<col> | ||
</tbody> | ||
</td> | ||
</table> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -171,3 +171,4 @@ load 1555757-2.html | |
load 1555757-3.html | ||
load 1555757-4.html | ||
load 1607045.html | ||
load 1710116-1.html |