| <div id="target" style="overflow: auto; height: 200px; width: 200px;"> |
| <div onmouseover="mouseOver(event)" style="margin: 300px 0; width: 100px; height: 100px; background-color: blue;"></div> |
| <div id="result">Test did not run</div> |
| function mouseOver(event) |
| document.getElementById("result").innerText = passed ? "PASS" : "FAIL"; |
| testRunner.waitUntilDone(); |
| // WebKit schedules a fake mouse move event as part of installing the WebView in |
| // a window. For the test to be valid, it must begin only after that event |
| eventSender.mouseMoveTo(50, 100); |
| document.getElementById("target").scrollTop = 250; |