Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/the-textarea-element/caret-visibility-after-creation-in-script.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="help" href="https://github.com/servo/servo/issues/42231">
<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>