| 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 |
| 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 |
| OLD | NEW |