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 pointerdown, pointerId=0 | 9 Received pointerdown, pointerId=0 |
10 Received touchstart, touchIds=0 | 10 Received touchstart, touchIds=0 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 Received pointermove, pointerId=1 | 111 Received pointermove, pointerId=1 |
112 Received pointermove, pointerId=2 | 112 Received pointermove, pointerId=2 |
113 Received touchmove, touchIds=012 | 113 Received touchmove, touchIds=012 |
114 Received pointercancel, pointerId=0 | 114 Received pointercancel, pointerId=0 |
115 Received pointercancel, pointerId=1 | 115 Received pointercancel, pointerId=1 |
116 Received pointercancel, pointerId=2 | 116 Received pointercancel, pointerId=2 |
117 Received touchstart, touchIds=3 | 117 Received touchstart, touchIds=3 |
118 Received touchmove, touchIds=0123 | 118 Received touchmove, touchIds=0123 |
119 Received touchend, touchIds=0123 | 119 Received touchend, touchIds=0123 |
120 | 120 |
| 121 --- multi cancel tests --- |
| 122 |
| 123 Received pointerdown, pointerId=0 |
| 124 Received pointerdown, pointerId=1 |
| 125 Received pointerdown, pointerId=2 |
| 126 Received touchstart, touchIds=012 |
| 127 Received pointercancel, pointerId=2 |
| 128 Received touchcancel, touchIds=2 |
| 129 Received pointermove, pointerId=0 |
| 130 Received pointermove, pointerId=1 |
| 131 Received touchmove, touchIds=01 |
| 132 Received pointercancel, pointerId=0 |
| 133 Received pointercancel, pointerId=1 |
| 134 Received touchcancel, touchIds=01 |
| 135 |
121 PASS successfullyParsed is true | 136 PASS successfullyParsed is true |
122 | 137 |
123 TEST COMPLETE | 138 TEST COMPLETE |
124 | 139 |
OLD | NEW |