OLD | NEW |
1 Tests that the target of touches match the element where the event originated, n
ot where the touch is currently occurring. | 1 Tests that the target of touches match the element where the event originated, n
ot where the touch is currently occurring. |
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 | 6 |
7 PASS event.type is "touchstart" | 7 PASS event.type is "touchstart" |
8 PASS event.touches[0].target.id is "targetA" | 8 PASS event.touches[0].target.id is "targetA" |
9 PASS event.touches[1].target.id is "targetB" | 9 PASS event.touches[1].target.id is "targetB" |
10 PASS event.targetTouches.length is 1 | 10 PASS event.targetTouches.length is 1 |
(...skipping 25 matching lines...) Expand all Loading... |
36 PASS event.touches[0].target.id is "targetB" | 36 PASS event.touches[0].target.id is "targetB" |
37 PASS event.touches[1].target.id is "targetA" | 37 PASS event.touches[1].target.id is "targetA" |
38 PASS event.targetTouches.length is 1 | 38 PASS event.targetTouches.length is 1 |
39 PASS event.type is "touchmove" | 39 PASS event.type is "touchmove" |
40 PASS event.touches[0].target.id is "targetB" | 40 PASS event.touches[0].target.id is "targetB" |
41 PASS event.touches[1].target.id is "targetA" | 41 PASS event.touches[1].target.id is "targetA" |
42 PASS event.targetTouches.length is 1 | 42 PASS event.targetTouches.length is 1 |
43 PASS successfullyParsed is true | 43 PASS successfullyParsed is true |
44 | 44 |
45 TEST COMPLETE | 45 TEST COMPLETE |
| 46 PASS successfullyParsed is true |
| 47 |
| 48 TEST COMPLETE |
46 | 49 |
OLD | NEW |