OLD | NEW |
1 This is a testharness.js-based test. | 1 This is a testharness.js-based test. |
2 PASS "transform: initial;" should parse as "initial" | 2 PASS "transform: initial;" should parse as "initial" |
3 PASS "transform: initial;" should be computed to "none" | 3 PASS "transform: initial;" should be computed to "none" |
4 PASS "transform: inherit;" should parse as "inherit" | 4 PASS "transform: inherit;" should parse as "inherit" |
5 PASS "transform: 0;" should be invalid | 5 PASS "transform: 0;" should be invalid |
6 PASS "transform: none;" should parse as "none" | 6 PASS "transform: none;" should parse as "none" |
7 PASS "transform: none none;" should be invalid | 7 PASS "transform: none none;" should be invalid |
8 PASS "transform: translateX(10px) scale(2);" should parse as "translateX(10px) s
cale(2)" | 8 PASS "transform: translateX(10px) scale(2);" should parse as "translateX(10px) s
cale(2)" |
9 PASS "transform: matrix(0, 1, 2, 3, 4, 5);" should parse as "matrix(0, 1, 2, 3,
4, 5)" | 9 PASS "transform: matrix(0, 1, 2, 3, 4, 5);" should parse as "matrix(0, 1, 2, 3,
4, 5)" |
10 PASS "transform: matrix(0, 1, 2, 3, 4, 5);" should be computed to "matrix(0, 1,
2, 3, 4, 5)" | 10 PASS "transform: matrix(0, 1, 2, 3, 4, 5);" should be computed to "matrix(0, 1,
2, 3, 4, 5)" |
11 PASS "transform: matrix();" should be invalid | 11 PASS "transform: matrix();" should be invalid |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 PASS "transform: rotateZ(1deg, 1deg);" should be invalid | 143 PASS "transform: rotateZ(1deg, 1deg);" should be invalid |
144 PASS "transform: perspective(2px);" should parse as "perspective(2px)" | 144 PASS "transform: perspective(2px);" should parse as "perspective(2px)" |
145 PASS "transform: perspective(2px);" should be computed to "matrix3d(1, 0, 0, 0,
0, 1, 0, 0, 0, 0, 1, -0.5, 0, 0, 0, 1)" | 145 PASS "transform: perspective(2px);" should be computed to "matrix3d(1, 0, 0, 0,
0, 1, 0, 0, 0, 0, 1, -0.5, 0, 0, 0, 1)" |
146 FAIL "transform: perspective(0px);" should be invalid assert_false: CSS.supports
expected false got true | 146 FAIL "transform: perspective(0px);" should be invalid assert_false: CSS.supports
expected false got true |
147 PASS "transform: perspective(2);" should be invalid | 147 PASS "transform: perspective(2);" should be invalid |
148 PASS "transform: perspective(5%);" should be invalid | 148 PASS "transform: perspective(5%);" should be invalid |
149 PASS "transform: perspective();" should be invalid | 149 PASS "transform: perspective();" should be invalid |
150 PASS "transform: perspective(1px, 2px);" should be invalid | 150 PASS "transform: perspective(1px, 2px);" should be invalid |
151 Harness: the test ran to completion. | 151 Harness: the test ran to completion. |
152 | 152 |
OLD | NEW |