mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update web-platform-tests to revision b'468d01bbd84da2babf265c6af46947be68713440'
This commit is contained in:
parent
35e95f55a1
commit
58e8ee674b
9438 changed files with 266112 additions and 106976 deletions
|
@ -22,6 +22,10 @@ function test_length_equals(value, expected) {
|
|||
test_length_equals('clamp(10px, 20px, 30px)', '20px');
|
||||
test_length_equals('clamp(10px, 5px, 30px)', '10px');
|
||||
test_length_equals('clamp(10px, 35px, 30px)', '30px');
|
||||
test_length_equals('clamp(10px, 35px , 30px)', '30px');
|
||||
test_length_equals('clamp(10px, 35px /*foo*/, 30px)', '30px');
|
||||
test_length_equals('clamp(10px /* foo */ , 35px, 30px)', '30px');
|
||||
test_length_equals('clamp(10px , 35px, 30px)', '30px');
|
||||
|
||||
// clamp(MIN, VAL, MAX) is identical to max(MIN, min(VAL, MAX)),
|
||||
// so MIN wins over MAX if they are in the wrong order.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue