Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<link rel="author" title="Jo Steven Novaryo" href="mailto:steven.novaryo@gmail.com">
<link rel="match" href="caret-visibility-after-creation-in-script-ref.html">
<title>A cursor should be shown when a textarea element is created and focused immediately</title>
<body></body>
<script>
const target = document.createElement('textarea');
document.body.appendChild(target);
target.focus();
</script>