Skip to content

Commit 2a2462a

Browse files
ladyhavocweb-flow
authored andcommitted
Bug 1891322 - more robust solution for NaN offset in gradients r=gfx-reviewers,lsalzman
Differential Revision: https://phabricator.services.mozilla.com/D207904
1 parent fcab1e9 commit 2a2462a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

webrender_api/src/gradient_builder.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,6 @@ impl GradientBuilder {
132132
let first = *stops.first().unwrap();
133133
let last = *stops.last().unwrap();
134134

135-
// Express the assertion so that if one of the offsets is NaN, we don't panic
136-
// and instead take the branch that handles degenerate gradients.
137-
assert!(!(first.offset > last.offset));
138-
139135
let stops_delta = last.offset - first.offset;
140136

141137
if stops_delta > 0.000001 {
@@ -144,6 +140,14 @@ impl GradientBuilder {
144140
}
145141

146142
(first.offset, last.offset)
143+
} else if stops_delta.is_nan() {
144+
// We have no good way to render a NaN offset, but make something
145+
// that is at least renderable.
146+
stops.clear();
147+
stops.push(di::GradientStop { color: last.color, offset: 0.0, });
148+
stops.push(di::GradientStop { color: last.color, offset: 1.0, });
149+
150+
(0.0, 1.0)
147151
} else {
148152
// We have a degenerate gradient and can't accurately transform the stops
149153
// what happens here depends on the repeat behavior, but in any case

0 commit comments

Comments
 (0)