Skip to content

Commit b9f93fc

Browse files
committed
Bug 1953974 - Remove an invalid assertion. r=dholbert
In this case the center is positive, min and max are negative, so we know the center is greater than both. But we still can't compare the min and max because they're different units, so it can't be simplified. Differential Revision: https://phabricator.services.mozilla.com/D241722 UltraBlame original commit: 4907b0c9a735b131b41004b9d07d78b70506fa47
1 parent 890b153 commit b9f93fc

File tree

2 files changed

+38
-34
lines changed

2 files changed

+38
-34
lines changed

servo/components/style/values/generics/calc.rs

-30
Original file line numberDiff line numberDiff line change
@@ -9220,37 +9220,7 @@ o
92209220
None
92219221
=
92229222
>
9223-
{
9224-
debug_assert
9225-
!
9226-
(
9227-
false
9228-
"
9229-
We
9230-
compared
9231-
center
9232-
with
9233-
min
9234-
and
9235-
max
9236-
how
9237-
are
9238-
\
9239-
min
9240-
/
9241-
max
9242-
not
9243-
comparable
9244-
with
9245-
each
9246-
other
9247-
?
9248-
"
9249-
)
9250-
;
92519223
return
9252-
;
9253-
}
92549224
}
92559225
;
92569226
if

testing/web-platform/tests/css/css-values/clamp-length-serialize.html

+38-4
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@
127127
test_valid_value
128128
(
129129
'
130-
letter
130+
margin
131131
-
132-
spacing
132+
top
133133
'
134134
value
135135
expected
@@ -138,9 +138,9 @@
138138
test_valid_value
139139
(
140140
'
141-
letter
141+
margin
142142
-
143-
spacing
143+
top
144144
'
145145
calc
146146
(
@@ -619,6 +619,40 @@
619619
test_valid_length
620620
(
621621
'
622+
clamp
623+
(
624+
-
625+
18px
626+
3vw
627+
-
628+
3vw
629+
)
630+
'
631+
'
632+
clamp
633+
(
634+
-
635+
18px
636+
3vw
637+
-
638+
3vw
639+
)
640+
'
641+
'
642+
clamp
643+
(
644+
-
645+
18px
646+
3vw
647+
-
648+
3vw
649+
)
650+
'
651+
)
652+
;
653+
test_valid_length
654+
(
655+
'
622656
calc
623657
(
624658
0px

0 commit comments

Comments
 (0)