|
245 | 245 | test_random_computed_value(property, 'calc(10 + random(10, infinity))', '0'); |
246 | 246 | test_random_computed_value(property, 'calc(10 + random(10, infinity, 10))', '0'); |
247 | 247 | test_random_computed_value(property, 'calc(10 + random(10, infinity, infinity))', '0'); |
248 | | -test_random_computed_value(property, 'random(10, 100, infinity)', '0'); |
249 | | -test_random_computed_value(property, 'calc(10 + random(10, 100, infinity))', '0'); |
| 248 | +test_random_computed_value(property, 'random(10, 100, infinity)', '10'); |
| 249 | +test_random_computed_value(property, 'calc(10 + random(10, 100, infinity))', '20'); |
250 | 250 | // Negative steps, even infinitely negative steps, are ignored. |
251 | 251 | test_random_computed_value_in_range(property, 'random(10, 100, -infinity)', '10', '100'); |
252 | 252 | test_random_computed_value_in_range(property, 'calc(10 + random(10, 100, -infinity))', '20', '110'); |
|
0 commit comments