4 <script src=
"../../resources/gc.js"></script>
7 var fr
= document
.createElement('iframe');
9 document
.body
.appendChild(fr
);
10 fr
.contentDocument
.body
.innerHTML
= '<p id="a">move mouse out of the window, and press a key</p>';
11 fr
.contentDocument
.body
.onkeydown = function(e
) {
13 document
.body
.removeChild(fr
);
18 if (window
.testRunner
)
20 testRunner
.dumpAsText();
21 testRunner
.waitUntilDone();
28 eventSender
.keyDown("x")
29 testRunner
.notifyDone();
36 This test passes if it does not crash. Move the mouse out
37 of the window, and then press any key.