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