Closed
Bug 1841638
Opened 2 years ago
Closed 2 years ago
scale() does not serialize single NaN value correctly
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
FIXED
117 Branch
| Tracking | Status | |
|---|---|---|
| firefox117 | --- | fixed |
People
(Reporter: canadahonk, Assigned: canadahonk)
References
Details
Attachments
(1 file)
|
48 bytes,
text/x-phabricator-request
|
Details |
Serializes as scale(calc(NaN), calc(NaN)) instead of scale(calc(NaN)) (repeated values should not be used). This issue may also pop up in (many) other places as x == y is not true if both values are NaN (due to IEEE 754 floating point spec).
WPT tests:
See end of subtests here failing with incorrect value scale(calc(NaN), calc(NaN)):
| Assignee | ||
Comment 1•2 years ago
|
||
Added custom implementation of PartialEq for Numbers to also check if
they are both NaN values.
WPT tests not specifically for this but incorrect serialization of
expected results:
- https://wpt.fyi/results/css/css-values/round-mod-rem-serialize.html
- https://wpt.fyi/results/css/css-values/sin-cos-tan-serialize.html
15 WPT subtests now newly pass :tada:
Updated•2 years ago
|
Assignee: nobody → oj
Status: NEW → ASSIGNED
Pushed by oj@oojmed.com:
https://hg.mozilla.org/integration/autoland/rev/e3f62ea4e593
Fix scale() single NaN value serialization r=emilio
Updated•2 years ago
|
Severity: -- → S3
Comment 3•2 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
status-firefox117:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 117 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•