Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 Verifies that canceling pointerdowns for touches correctly suppresses mouseevent s. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". | |
| 4 | |
| 5 | |
| 6 === With primary pointerdown uncanceled === | |
| 7 -- Quick tap -- | |
| 8 Received pointerdown primary | |
| 9 Received touchstart | |
| 10 Received pointerup primary | |
| 11 Received touchend | |
| 12 Received mousemove | |
| 13 Received mousedown | |
| 14 Received mouseup | |
| 15 Received click | |
| 16 -- Long tap -- | |
| 17 Received pointerdown primary | |
| 18 Received touchstart | |
| 19 Received mousemove | |
| 20 Received pointerdown primary | |
| 21 Received mousedown | |
| 22 Received pointerup primary | |
| 23 Received touchend | |
| 24 | |
| 25 === With primary pointerdown canceled === | |
| 26 -- Quick tap -- | |
| 27 Received pointerdown primary,canceled | |
| 28 Received touchstart | |
| 29 Received pointerup primary | |
| 30 Received touchend | |
| 31 Received click | |
| 32 -- Long tap -- | |
| 33 Received pointerdown primary,canceled | |
| 34 Received touchstart | |
| 35 Received mousemove | |
|
Rick Byers
2016/05/27 20:39:27
Your CL description says that you're still firing
mustaq
2016/05/30 15:14:26
Yes, I noticed it too, that's why I added the long
mustaq
2016/06/02 19:26:26
The way I was sending TE+GE sequence for long-tap
| |
| 36 Received pointerdown primary,canceled | |
| 37 Received pointerup primary | |
| 38 Received touchend | |
| 39 | |
| 40 === With primary pointerdown uncanceled === | |
| 41 -- Quick tap -- | |
| 42 Received pointerdown primary | |
| 43 Received touchstart | |
| 44 Received pointerup primary | |
| 45 Received touchend | |
| 46 Received mousemove | |
| 47 Received mousedown | |
| 48 Received mouseup | |
| 49 Received click | |
| 50 -- Long tap -- | |
| 51 Received pointerdown primary | |
| 52 Received touchstart | |
| 53 Received mousemove | |
| 54 Received pointerdown primary | |
| 55 Received pointerup primary | |
| 56 Received touchend | |
| 57 | |
| 58 PASS successfullyParsed is true | |
| 59 | |
| 60 TEST COMPLETE | |
| 61 | |
| OLD | NEW |