2 ::-webkit-scrollbar-corner {
6 <p>Focus on the input and hit Escape and see if the browser crashes.
</p>
7 <input placeholder=
"foo" id=i
>
10 document
.getElementById('i').addEventListener("keydown", function() {
11 this.style
.display
= "none";
12 document
.getElementById('console').innerText
= 'PASS (not crashed)';
13 if (window
.testRunner
)
14 testRunner
.notifyDone();
17 if (window
.testRunner
&& window
.eventSender
) {
18 testRunner
.dumpAsText();
19 testRunner
.waitUntilDone();
20 setTimeout(function() {
21 document
.getElementById('i').focus();
22 eventSender
.keyDown('a');