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

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: merge to trunk 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
15 Test case: explicit-none 24 Test case: explicit-none
16 PASS style.touchAction is "none" 25 PASS style.touchAction is "none"
17 26
18 Test case: explicit-invalid 27 Test case: explicit-invalid
19 PASS style.touchAction is "auto" 28 PASS style.touchAction is "auto"
20 29
30 Test case: explicit-invalid
31 PASS style.touchAction is "auto"
32
33 Test case: explicit-invalid
34 PASS style.touchAction is "auto"
35
21 Test case: not-inherited 36 Test case: not-inherited
22 PASS style.touchAction is "auto" 37 PASS style.touchAction is "auto"
23 38
24 Test case: inherit 39 Test case: inherit
25 PASS style.touchAction is "none" 40 PASS style.touchAction is "none"
26 41
27 Test case: initial 42 Test case: initial
28 PASS style.touchAction is "auto" 43 PASS style.touchAction is "auto"
29 44
30 PASS successfullyParsed is true 45 PASS successfullyParsed is true
31 46
32 TEST COMPLETE 47 TEST COMPLETE
33 48
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698