OLD | NEW |
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 | 15 Test case: explicit-pan-x |
16 PASS style.touchAction is "pan-x" | 16 PASS style.touchAction is "pan-x" |
17 | 17 |
| 18 Test case: explicit-pan-left |
| 19 PASS style.touchAction is "pan-left" |
| 20 |
| 21 Test case: explicit-pan-right |
| 22 PASS style.touchAction is "pan-right" |
| 23 |
18 Test case: explicit-pan-y | 24 Test case: explicit-pan-y |
19 PASS style.touchAction is "pan-y" | 25 PASS style.touchAction is "pan-y" |
20 | 26 |
| 27 Test case: explicit-pan-up |
| 28 PASS style.touchAction is "pan-up" |
| 29 |
| 30 Test case: explicit-pan-down |
| 31 PASS style.touchAction is "pan-down" |
| 32 |
21 Test case: explicit-pan-x-pan-y | 33 Test case: explicit-pan-x-pan-y |
22 PASS style.touchAction is "pan-x pan-y" | 34 PASS style.touchAction is "pan-x pan-y" |
23 | 35 |
24 Test case: explicit-pan-y-pan-x | 36 Test case: explicit-pan-y-pan-x |
25 PASS style.touchAction is "pan-x pan-y" | 37 PASS style.touchAction is "pan-x pan-y" |
26 | 38 |
| 39 Test case: explicit-pan-left-pan-up |
| 40 PASS style.touchAction is "pan-left pan-up" |
| 41 |
| 42 Test case: explicit-pan-left-pan-down |
| 43 PASS style.touchAction is "pan-left pan-down" |
| 44 |
| 45 Test case: explicit-pan-right-pan-up |
| 46 PASS style.touchAction is "pan-right pan-up" |
| 47 |
| 48 Test case: explicit-pan-right-pan-down |
| 49 PASS style.touchAction is "pan-right pan-down" |
| 50 |
| 51 Test case: explicit-pan-up-pan-left |
| 52 PASS style.touchAction is "pan-left pan-up" |
| 53 |
| 54 Test case: explicit-pan-up-pan-right |
| 55 PASS style.touchAction is "pan-right pan-up" |
| 56 |
| 57 Test case: explicit-pan-down-pan-left |
| 58 PASS style.touchAction is "pan-left pan-down" |
| 59 |
| 60 Test case: explicit-pan-down-pan-right |
| 61 PASS style.touchAction is "pan-right pan-down" |
| 62 |
27 Test case: explicit-manipulation | 63 Test case: explicit-manipulation |
28 PASS style.touchAction is "manipulation" | 64 PASS style.touchAction is "manipulation" |
29 | 65 |
30 Test case: explicit-none | 66 Test case: explicit-none |
31 PASS style.touchAction is "none" | 67 PASS style.touchAction is "none" |
32 | 68 |
33 Test case: explicit-invalid-1 | 69 Test case: explicit-invalid-1 |
34 PASS style.touchAction is "auto" | 70 PASS style.touchAction is "auto" |
35 | 71 |
36 Test case: explicit-invalid-2 | 72 Test case: explicit-invalid-2 |
37 PASS style.touchAction is "none" | 73 PASS style.touchAction is "none" |
38 | 74 |
39 Test case: explicit-invalid-3 | 75 Test case: explicit-invalid-3 |
40 PASS style.touchAction is "auto" | 76 PASS style.touchAction is "auto" |
41 | 77 |
42 Test case: explicit-invalid-4 | 78 Test case: explicit-invalid-4 |
43 PASS style.touchAction is "auto" | 79 PASS style.touchAction is "auto" |
44 | 80 |
45 Test case: explicit-invalid-5 | 81 Test case: explicit-invalid-5 |
46 PASS style.touchAction is "auto" | 82 PASS style.touchAction is "auto" |
47 | 83 |
| 84 Test case: explicit-invalid-6 |
| 85 PASS style.touchAction is "auto" |
| 86 |
| 87 Test case: explicit-invalid-7 |
| 88 PASS style.touchAction is "auto" |
| 89 |
| 90 Test case: explicit-invalid-8 |
| 91 PASS style.touchAction is "auto" |
| 92 |
| 93 Test case: explicit-invalid-9 |
| 94 PASS style.touchAction is "auto" |
| 95 |
| 96 Test case: explicit-invalid-10 |
| 97 PASS style.touchAction is "auto" |
| 98 |
| 99 Test case: explicit-invalid-11 |
| 100 PASS style.touchAction is "auto" |
| 101 |
| 102 Test case: explicit-invalid-12 |
| 103 PASS style.touchAction is "auto" |
| 104 |
| 105 Test case: explicit-invalid-13 |
| 106 PASS style.touchAction is "auto" |
| 107 |
48 Test case: not-inherited | 108 Test case: not-inherited |
49 PASS style.touchAction is "auto" | 109 PASS style.touchAction is "auto" |
50 | 110 |
51 Test case: inherit | 111 Test case: inherit |
52 PASS style.touchAction is "none" | 112 PASS style.touchAction is "none" |
53 | 113 |
54 Test case: initial | 114 Test case: initial |
55 PASS style.touchAction is "auto" | 115 PASS style.touchAction is "auto" |
56 | 116 |
57 PASS successfullyParsed is true | 117 PASS successfullyParsed is true |
58 | 118 |
59 TEST COMPLETE | 119 TEST COMPLETE |
60 | 120 |
OLD | NEW |