blob: 1558383822973bcb228b8c65393fe453c6376212 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script>
testRunner.dumpAsText();
testRunner.waitUntilDone();
var textarea = document.createElement("textarea");
textarea.setAttribute("autofocus", "");
textarea.addEventListener("DOMFocusIn", function () {
document.documentElement.innerHTML = "";
window.setTimeout(function() {
document.body.innerHTML = "PASS unless crash.";
testRunner.notifyDone();
}, 0);
}, false);
document.documentElement.appendChild(textarea);
</script>
</body>
</html>