2 Tests that WebKit does not crash when a frame is removed during keydown
3 event processing. To test manually, press any letter key. The iframe
4 below should disappear and Safari should not crash.
8 document
.getElementById("iframe").focus();
9 if (window
.testRunner
) {
10 testRunner
.dumpAsText();
11 eventSender
.keyDown("x");
15 <iframe onload=
"test()" id=
"iframe" src=
"resources/keydown-remove-frame-iframe.html"></iframe>