| OLD | NEW |
| 1 Tests that the target of touches match the element where the event originated, n
ot where the touch is currently occurring. This is a limited version of test tou
ch-target.html that avoids the situation where one touch point is released while
another is maintained. | 1 Tests that the target of touches match the element where the event originated, n
ot where the touch is currently occurring. This is a limited version of test tou
ch-target.html that avoids the situation where one touch point is released while
another is maintained. |
| 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 29 matching lines...) Expand all Loading... |
| 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 event.type is "touchmove" | 43 PASS event.type is "touchmove" |
| 44 PASS event.touches[0].target.id is "targetB" | 44 PASS event.touches[0].target.id is "targetB" |
| 45 PASS event.touches[1].target.id is "targetA" | 45 PASS event.touches[1].target.id is "targetA" |
| 46 PASS event.targetTouches.length is 1 | 46 PASS event.targetTouches.length is 1 |
| 47 PASS successfullyParsed is true | 47 PASS successfullyParsed is true |
| 48 | 48 |
| 49 TEST COMPLETE | 49 TEST COMPLETE |
| 50 PASS successfullyParsed is true |
| 51 |
| 52 TEST COMPLETE |
| 50 | 53 |
| OLD | NEW |