@@ -4,7 +4,7 @@ a {b: math.pow(-0.0, math.div(-1, 0))}
44
55<===> with_exponent/negative_infinity/output.css
66a {
7- b: Infinity ;
7+ b: calc(infinity) ;
88}
99
1010<===>
@@ -15,7 +15,7 @@ a {b: math.pow(-0.0, -2)}
1515
1616<===> with_exponent/negative_even_integer/output.css
1717a {
18- b: Infinity ;
18+ b: calc(infinity) ;
1919}
2020
2121<===>
@@ -26,7 +26,7 @@ a {b: math.pow(-0.0, -2.000000000001)}
2626
2727<===> with_exponent/negative_even_integer_fuzzy/output.css
2828a {
29- b: Infinity ;
29+ b: calc(infinity) ;
3030}
3131
3232<===>
@@ -37,7 +37,7 @@ a {b: math.pow(-0.0, -3)}
3737
3838<===> with_exponent/negative_odd_integer/output.css
3939a {
40- b: -Infinity ;
40+ b: calc(-infinity) ;
4141}
4242
4343<===>
@@ -48,7 +48,7 @@ a {b: math.pow(-0.0, -3.000000000001)}
4848
4949<===> with_exponent/negative_odd_integer_fuzzy/output.css
5050a {
51- b: Infinity ;
51+ b: calc(infinity) ;
5252}
5353
5454<===>
@@ -59,7 +59,7 @@ a {b: math.pow(-0.0, -0.5)}
5959
6060<===> with_exponent/negative_decimal/output.css
6161a {
62- b: Infinity ;
62+ b: calc(infinity) ;
6363}
6464
6565<===>
@@ -158,7 +158,7 @@ a {b: math.pow(-0.000000000001, math.div(-1, 0))}
158158
159159<===> fuzzy/with_exponent/negative_infinity/output.css
160160a {
161- b: Infinity ;
161+ b: calc(infinity) ;
162162}
163163
164164<===>
@@ -191,7 +191,7 @@ a {b: math.pow(-0.000000000001, -0.5)}
191191
192192<===> fuzzy/with_exponent/negative_decimal/output.css
193193a {
194- b: NaN;
194+ b: calc( NaN) ;
195195}
196196
197197<===>
@@ -235,7 +235,7 @@ a {b: math.pow(-0.000000000001, 0.5)}
235235
236236<===> fuzzy/with_exponent/decimal/output.css
237237a {
238- b: NaN;
238+ b: calc( NaN) ;
239239}
240240
241241<===>
0 commit comments