chromium/third_party/blink/web_tests/fast/forms/textarea/textarea-autofocus-removal-while-focusing.html

<!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>