| Index: webkit/data/layout_tests/chrome/fast/events/nested-window-event.html
|
| ===================================================================
|
| --- webkit/data/layout_tests/chrome/fast/events/nested-window-event.html (revision 12362)
|
| +++ webkit/data/layout_tests/chrome/fast/events/nested-window-event.html (working copy)
|
| @@ -1,25 +0,0 @@
|
| -<html>
|
| -
|
| -<script>
|
| -if (window.layoutTestController) {
|
| - layoutTestController.dumpAsText();
|
| -}
|
| -
|
| -function run_test() {
|
| - var old_evt = window.event;
|
| - var xhr = new XMLHttpRequest();
|
| - xhr.onreadystatechange = function() {}
|
| - xhr.open("GET", "test.html");
|
| - xhr.send();
|
| - // window.event should exist, and same as old_evt.
|
| - document.getElementById('console').innerHTML =
|
| - old_evt == window.event ? 'PASS' : 'FAIL';
|
| -}
|
| -</script>
|
| -<body onload="run_test()">
|
| -This tests window.event was kept the same when nested event
|
| -handling was called. You should see 'PASS' if the test passes.
|
| -<br>
|
| -<div id='console'></div>
|
| -</body>
|
| -</html>
|
|
|