Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: third_party/WebKit/LayoutTests/transforms/transform-parsing-expected.txt

Issue 1977313003: testharnessreport: Clear BODY content regardless of existence of <div id=log> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unregister_service_worker() Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698