blob: f7740889f53b0ebb14492e5fd9a16155d6a093f1 [file] [log] [blame]
<p>This tests for a bug where the first newline entered into a text area would be lost.</p>
<textarea id="textarea"></textarea>
<script>
var textarea = document.getElementById("textarea");
textarea.setSelectionRange(0, 0);
textarea.focus();
document.execCommand("InsertLineBreak");
</script>