OLD | NEW |
(Empty) | |
| 1 Verifies the effect of pointer event prevent-default on following pointer & mous
e events. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 --- test with preventDefault on none --- |
| 7 - start with mouse outside target - |
| 8 - move into target & click - |
| 9 1. target received mouseover |
| 10 2. target received mouseenter |
| 11 3. target received mousedown |
| 12 4. target received mouseup |
| 13 - drag & release within target - |
| 14 5. target received mousedown |
| 15 6. target received mouseup |
| 16 - move outside target again - |
| 17 7. target received mouseout |
| 18 8. target received mouseleave |
| 19 |
| 20 --- test with preventDefault on pointerdown --- |
| 21 - start with mouse outside target - |
| 22 - move into target & click - |
| 23 1. target received mouseover |
| 24 2. target received mouseenter |
| 25 3. target received mousedown |
| 26 4. target received mouseup |
| 27 - drag & release within target - |
| 28 5. target received mousedown |
| 29 6. target received mouseup |
| 30 - move outside target again - |
| 31 7. target received mouseout |
| 32 8. target received mouseleave |
| 33 |
| 34 --- test with preventDefault on pointerup --- |
| 35 - start with mouse outside target - |
| 36 - move into target & click - |
| 37 1. target received mouseover |
| 38 2. target received mouseenter |
| 39 3. target received mousedown |
| 40 4. target received mouseup |
| 41 - drag & release within target - |
| 42 5. target received mousedown |
| 43 6. target received mouseup |
| 44 - move outside target again - |
| 45 7. target received mouseout |
| 46 8. target received mouseleave |
| 47 |
| 48 --- test with preventDefault on pointerenter --- |
| 49 - start with mouse outside target - |
| 50 - move into target & click - |
| 51 1. target received mouseover |
| 52 2. target received mouseenter |
| 53 3. target received mousedown |
| 54 4. target received mouseup |
| 55 - drag & release within target - |
| 56 5. target received mousedown |
| 57 6. target received mouseup |
| 58 - move outside target again - |
| 59 7. target received mouseout |
| 60 8. target received mouseleave |
| 61 |
| 62 --- test with preventDefault on pointerleave --- |
| 63 - start with mouse outside target - |
| 64 - move into target & click - |
| 65 1. target received mouseover |
| 66 2. target received mouseenter |
| 67 3. target received mousedown |
| 68 4. target received mouseup |
| 69 - drag & release within target - |
| 70 5. target received mousedown |
| 71 6. target received mouseup |
| 72 - move outside target again - |
| 73 7. target received mouseout |
| 74 8. target received mouseleave |
| 75 |
| 76 --- test with preventDefault on pointerover --- |
| 77 - start with mouse outside target - |
| 78 - move into target & click - |
| 79 1. target received mouseover |
| 80 2. target received mouseenter |
| 81 3. target received mousedown |
| 82 4. target received mouseup |
| 83 - drag & release within target - |
| 84 5. target received mousedown |
| 85 6. target received mouseup |
| 86 - move outside target again - |
| 87 7. target received mouseout |
| 88 8. target received mouseleave |
| 89 |
| 90 --- test with preventDefault on pointerout --- |
| 91 - start with mouse outside target - |
| 92 - move into target & click - |
| 93 1. target received mouseover |
| 94 2. target received mouseenter |
| 95 3. target received mousedown |
| 96 4. target received mouseup |
| 97 - drag & release within target - |
| 98 5. target received mousedown |
| 99 6. target received mouseup |
| 100 - move outside target again - |
| 101 7. target received mouseout |
| 102 8. target received mouseleave |
| 103 |
| 104 PASS successfullyParsed is true |
| 105 |
| 106 TEST COMPLETE |
| 107 |
OLD | NEW |