| OLD | NEW |
| 1 This tests single touch event emulation using mouse events. | 1 This tests single touch event emulation using mouse events. |
| 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 PASS 'ontouchstart' in window is true | 6 PASS 'ontouchstart' in window is true |
| 7 PASS 'ontouchend' in document is true | 7 PASS 'ontouchend' in document is true |
| 8 Unexpected mousemove event received before touchstart |
| 8 PASS lastEvent.type is "touchstart" | 9 PASS lastEvent.type is "touchstart" |
| 9 PASS lastEvent.touches.length is 1 | 10 PASS lastEvent.touches.length is 1 |
| 10 PASS lastEvent.changedTouches.length is 1 | 11 PASS lastEvent.changedTouches.length is 1 |
| 11 PASS lastEvent.targetTouches.length is 1 | 12 PASS lastEvent.targetTouches.length is 1 |
| 12 PASS lastEvent.pageX is 0 | 13 PASS lastEvent.pageX is 0 |
| 13 PASS lastEvent.pageY is 0 | 14 PASS lastEvent.pageY is 0 |
| 14 PASS lastEvent.shiftKey is true | 15 PASS lastEvent.shiftKey is true |
| 15 PASS lastEvent.altKey is true | 16 PASS lastEvent.altKey is true |
| 16 PASS lastEvent.ctrlKey is false | 17 PASS lastEvent.ctrlKey is false |
| 17 PASS lastEvent.metaKey is false | 18 PASS lastEvent.metaKey is false |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 PASS lastEvent.changedTouches[0].clientY is 30 | 55 PASS lastEvent.changedTouches[0].clientY is 30 |
| 55 PASS lastEvent.changedTouches[0].identifier is 0 | 56 PASS lastEvent.changedTouches[0].identifier is 0 |
| 56 PASS lastEvent.shiftKey is false | 57 PASS lastEvent.shiftKey is false |
| 57 PASS lastEvent.altKey is true | 58 PASS lastEvent.altKey is true |
| 58 PASS lastEvent.ctrlKey is true | 59 PASS lastEvent.ctrlKey is true |
| 59 PASS lastEvent.metaKey is false | 60 PASS lastEvent.metaKey is false |
| 60 PASS successfullyParsed is true | 61 PASS successfullyParsed is true |
| 61 | 62 |
| 62 TEST COMPLETE | 63 TEST COMPLETE |
| 63 | 64 |
| OLD | NEW |