5 testRunner
.dumpAsText();
6 testRunner
.waitUntilDone();
7 var textarea
= document
.createElement("textarea");
8 textarea
.setAttribute("autofocus", "");
9 textarea
.addEventListener("DOMFocusIn", function () {
10 document
.documentElement
.innerHTML
= "";
11 window
.setTimeout(function() {
12 document
.body
.innerHTML
= "PASS unless crash.";
13 testRunner
.notifyDone();
16 document
.documentElement
.appendChild(textarea
);