OLD | NEW |
(Empty) | |
| 1 Test that wheel and mouse events are dispatched to document and window even if t
hey do not hit any element in the page. |
| 2 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 3 outside body, inside element |
| 4 eventType: mousedown |
| 5 PASS objectsToString(actualReceivers) is "HTMLDivElement,HTMLBodyElement,HTMLDoc
ument,Window" |
| 6 eventType: mouseup |
| 7 PASS objectsToString(actualReceivers) is "HTMLDivElement,HTMLBodyElement,HTMLDoc
ument,Window" |
| 8 eventType: click |
| 9 PASS objectsToString(actualReceivers) is "HTMLDivElement,HTMLBodyElement,HTMLDoc
ument,Window" |
| 10 eventType: wheel |
| 11 PASS objectsToString(actualReceivers) is "HTMLDivElement,HTMLBodyElement,HTMLDoc
ument,Window" |
| 12 inside body, outside element |
| 13 eventType: mousedown |
| 14 PASS objectsToString(actualReceivers) is "HTMLBodyElement,HTMLDocument,Window" |
| 15 eventType: mouseup |
| 16 PASS objectsToString(actualReceivers) is "HTMLBodyElement,HTMLDocument,Window" |
| 17 eventType: click |
| 18 PASS objectsToString(actualReceivers) is "HTMLBodyElement,HTMLDocument,Window" |
| 19 eventType: wheel |
| 20 PASS objectsToString(actualReceivers) is "HTMLBodyElement,HTMLDocument,Window" |
| 21 outside body, outside element, inside frame |
| 22 eventType: mousedown |
| 23 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 24 eventType: mouseup |
| 25 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 26 eventType: click |
| 27 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 28 eventType: wheel |
| 29 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 30 outside body, outside element, outside frame |
| 31 eventType: mousedown |
| 32 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 33 eventType: mouseup |
| 34 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 35 eventType: click |
| 36 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 37 eventType: wheel |
| 38 PASS objectsToString(actualReceivers) is "HTMLDocument,Window" |
| 39 PASS successfullyParsed is true |
| 40 |
| 41 TEST COMPLETE |
| 42 |
OLD | NEW |