OLD | NEW |
1 Verifies that pointercancel events are fired correctly on touch. | 1 Verifies that pointercancel events are fired correctly on touch. |
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 --- single drag tests --- | 6 --- single drag tests --- |
7 | 7 |
8 -- preventDefault on none, without uncanceledMoveCausesScroll -- | 8 -- preventDefault on none, without uncanceledMoveCausesScroll -- |
9 Received touchstart, touchIds=0 | 9 Received touchstart, touchIds=0 |
10 Received touchmove, touchIds=0 | 10 Received touchmove, touchIds=0 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 Received touchend, touchIds=0123 | 58 Received touchend, touchIds=0123 |
59 | 59 |
60 -- preventDefault on none, with uncanceledMoveCausesScroll -- | 60 -- preventDefault on none, with uncanceledMoveCausesScroll -- |
61 Received touchstart, touchIds=012 | 61 Received touchstart, touchIds=012 |
62 Received touchmove, touchIds=012 | 62 Received touchmove, touchIds=012 |
63 Received touchmove, touchIds=012 | 63 Received touchmove, touchIds=012 |
64 Received touchstart, touchIds=3 | 64 Received touchstart, touchIds=3 |
65 Received touchmove, touchIds=0123 | 65 Received touchmove, touchIds=0123 |
66 Received touchend, touchIds=0123 | 66 Received touchend, touchIds=0123 |
67 | 67 |
| 68 --- multi cancel tests --- |
| 69 |
| 70 Received touchstart, touchIds=012 |
| 71 Received touchcancel, touchIds=2 |
| 72 Received touchmove, touchIds=01 |
| 73 Received touchcancel, touchIds=01 |
| 74 |
68 PASS successfullyParsed is true | 75 PASS successfullyParsed is true |
69 | 76 |
70 TEST COMPLETE | 77 TEST COMPLETE |
71 | 78 |
OLD | NEW |