Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 This test verifies clientX/Y of pointer events inside iframe. | |
| 3 | |
| 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". | |
| 5 | |
| 6 | |
| 7 PASS successfullyParsed is true | |
| 8 | |
| 9 TEST COMPLETE | |
| 10 *** First touch down in innerFrame and move *** | |
|
mustaq
2016/05/13 20:03:16
Nit: "First touch down..." -> "Put first finger...
Navid Zolghadr
2016/05/16 20:01:50
Done.
| |
| 11 innerFrame recieved pointerdown | |
| 12 touchstart is recieved with changedTouches.length=1: | |
| 13 Touch with id=0 with target = innerFrame | |
| 14 innerFrame recieved gotpointercapture | |
| 15 innerFrame recieved pointermove | |
| 16 touchmove is recieved with changedTouches.length=1: | |
| 17 Touch with id=0 with target = innerFrame | |
| 18 | |
| 19 *** Second touch down in outerFrame *** | |
| 20 outerFrame recieved pointerdown | |
| 21 | |
| 22 *** Second touch move in outerFrame *** | |
| 23 outerFrame recieved gotpointercapture | |
| 24 outerFrame recieved pointermove | |
| 25 | |
| 26 *** Second touch move into innerFrame *** | |
| 27 outerFrame recieved pointermove | |
| 28 | |
| 29 *** First touch move in innerFrame *** | |
| 30 innerFrame recieved pointermove | |
| 31 touchmove is recieved with changedTouches.length=1: | |
| 32 Touch with id=0 with target = innerFrame | |
| 33 | |
| 34 *** First touch move out of innerFrame *** | |
| 35 innerFrame recieved pointermove | |
| 36 touchmove is recieved with changedTouches.length=1: | |
| 37 Touch with id=0 with target = innerFrame | |
| 38 | |
| 39 *** Releasing touches *** | |
| 40 innerFrame recieved pointerup | |
| 41 innerFrame recieved lostpointercapture | |
| 42 outerFrame recieved pointerup | |
| 43 outerFrame recieved lostpointercapture | |
| 44 touchend is recieved with changedTouches.length=1: | |
| 45 Touch with id=0 with target = innerFrame | |
| 46 | |
|
mustaq
2016/05/13 20:03:16
What about adding a few test scenarios:
Scenario B
Navid Zolghadr
2016/05/16 20:01:50
Done.
| |
| 47 | |
| OLD | NEW |