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

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

Issue 2126323002: Add support for touch-action: pinch-zoom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check in scroll begin for pointer count and add test Created 4 years, 3 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 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"
(...skipping 12 matching lines...) Expand all
23 23
24 Test case: explicit-pan-y 24 Test case: explicit-pan-y
25 PASS style.touchAction is "pan-y" 25 PASS style.touchAction is "pan-y"
26 26
27 Test case: explicit-pan-up 27 Test case: explicit-pan-up
28 PASS style.touchAction is "pan-up" 28 PASS style.touchAction is "pan-up"
29 29
30 Test case: explicit-pan-down 30 Test case: explicit-pan-down
31 PASS style.touchAction is "pan-down" 31 PASS style.touchAction is "pan-down"
32 32
33 Test case: explicit-pinch-zoom
34 PASS style.touchAction is "pinch-zoom"
35
33 Test case: explicit-pan-x-pan-y 36 Test case: explicit-pan-x-pan-y
34 PASS style.touchAction is "pan-x pan-y" 37 PASS style.touchAction is "pan-x pan-y"
35 38
36 Test case: explicit-pan-y-pan-x 39 Test case: explicit-pan-y-pan-x
37 PASS style.touchAction is "pan-x pan-y" 40 PASS style.touchAction is "pan-x pan-y"
38 41
39 Test case: explicit-pan-left-pan-up 42 Test case: explicit-pan-left-pan-up
40 PASS style.touchAction is "pan-left pan-up" 43 PASS style.touchAction is "pan-left pan-up"
41 44
42 Test case: explicit-pan-left-pan-down 45 Test case: explicit-pan-left-pan-down
(...skipping 10 matching lines...) Expand all
53 56
54 Test case: explicit-pan-up-pan-right 57 Test case: explicit-pan-up-pan-right
55 PASS style.touchAction is "pan-right pan-up" 58 PASS style.touchAction is "pan-right pan-up"
56 59
57 Test case: explicit-pan-down-pan-left 60 Test case: explicit-pan-down-pan-left
58 PASS style.touchAction is "pan-left pan-down" 61 PASS style.touchAction is "pan-left pan-down"
59 62
60 Test case: explicit-pan-down-pan-right 63 Test case: explicit-pan-down-pan-right
61 PASS style.touchAction is "pan-right pan-down" 64 PASS style.touchAction is "pan-right pan-down"
62 65
66 Test case: explicit-pan-down-pan-right-pinch-zoom
67 PASS style.touchAction is "pan-right pan-down pinch-zoom"
68
69 Test case: explicit-pinch-zoom-pan-x-pan-up
70 PASS style.touchAction is "pan-x pan-up pinch-zoom"
71
72 Test case: explicit-pinch-zoom-pan-x-pan-y
73 PASS style.touchAction is "manipulation"
74
63 Test case: explicit-manipulation 75 Test case: explicit-manipulation
64 PASS style.touchAction is "manipulation" 76 PASS style.touchAction is "manipulation"
65 77
66 Test case: explicit-none 78 Test case: explicit-none
67 PASS style.touchAction is "none" 79 PASS style.touchAction is "none"
68 80
69 Test case: explicit-invalid-1 81 Test case: explicit-invalid-1
70 PASS style.touchAction is "auto" 82 PASS style.touchAction is "auto"
71 83
72 Test case: explicit-invalid-2 84 Test case: explicit-invalid-2
(...skipping 25 matching lines...) Expand all
98 110
99 Test case: explicit-invalid-11 111 Test case: explicit-invalid-11
100 PASS style.touchAction is "auto" 112 PASS style.touchAction is "auto"
101 113
102 Test case: explicit-invalid-12 114 Test case: explicit-invalid-12
103 PASS style.touchAction is "auto" 115 PASS style.touchAction is "auto"
104 116
105 Test case: explicit-invalid-13 117 Test case: explicit-invalid-13
106 PASS style.touchAction is "auto" 118 PASS style.touchAction is "auto"
107 119
120 Test case: explicit-invalid-14
121 PASS style.touchAction is "auto"
122
108 Test case: not-inherited 123 Test case: not-inherited
109 PASS style.touchAction is "auto" 124 PASS style.touchAction is "auto"
110 125
111 Test case: inherit 126 Test case: inherit
112 PASS style.touchAction is "none" 127 PASS style.touchAction is "none"
113 128
114 Test case: initial 129 Test case: initial
115 PASS style.touchAction is "auto" 130 PASS style.touchAction is "auto"
116 131
117 PASS successfullyParsed is true 132 PASS successfullyParsed is true
118 133
119 TEST COMPLETE 134 TEST COMPLETE
120 135
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698