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

Side by Side Diff: LayoutTests/fast/css/touch-action-parsing-expected.txt

Issue 87973002: add pan-x and pan-y support to CSS touch-action parsing. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated review comments Created 7 years 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 Test the parsing and application of the touch-action property. 1 Test the parsing and application of the touch-action property.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Test case: default 6 Test case: default
7 PASS style.touchAction is "auto" 7 PASS style.touchAction is "auto"
8 8
9 Test case: stylesheet-none 9 Test case: stylesheet-none
10 PASS style.touchAction is "none" 10 PASS style.touchAction is "none"
11 11
12 Test case: explicit-auto 12 Test case: explicit-auto
13 PASS style.touchAction is "auto" 13 PASS style.touchAction is "auto"
14 14
15 Test case: explicit-pan-x
16 PASS style.touchAction is "pan-x"
17
18 Test case: explicit-pan-y
19 PASS style.touchAction is "pan-y"
20
21 Test case: explicit-pan-x-pan-y
22 PASS style.touchAction is "pan-x pan-y"
23
24 Test case: explicit-pan-y-pan-x
25 PASS style.touchAction is "pan-x pan-y"
26
15 Test case: explicit-none 27 Test case: explicit-none
16 PASS style.touchAction is "none" 28 PASS style.touchAction is "none"
17 29
18 Test case: explicit-invalid 30 Test case: explicit-invalid-1
31 PASS style.touchAction is "auto"
32
33 Test case: explicit-invalid-2
34 PASS style.touchAction is "none"
35
36 Test case: explicit-invalid-3
37 PASS style.touchAction is "auto"
38
39 Test case: explicit-invalid-4
19 PASS style.touchAction is "auto" 40 PASS style.touchAction is "auto"
20 41
21 Test case: not-inherited 42 Test case: not-inherited
22 PASS style.touchAction is "auto" 43 PASS style.touchAction is "auto"
23 44
24 Test case: inherit 45 Test case: inherit
25 PASS style.touchAction is "none" 46 PASS style.touchAction is "none"
26 47
27 Test case: initial 48 Test case: initial
28 PASS style.touchAction is "auto" 49 PASS style.touchAction is "auto"
29 50
30 PASS successfullyParsed is true 51 PASS successfullyParsed is true
31 52
32 TEST COMPLETE 53 TEST COMPLETE
33 54
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698