| OLD | NEW |
| 1 <p>This tests for a bug where the first newline entered into a text area would b
e lost.</p> | 1 <p>This tests for a bug where the first newline entered into a text area would b
e lost.</p> |
| 2 <textarea id="textarea"></textarea> | 2 <textarea id="textarea"></textarea> |
| 3 | 3 |
| 4 <script> | 4 <script> |
| 5 var textarea = document.getElementById("textarea"); | 5 var textarea = document.getElementById("textarea"); |
| 6 textarea.setSelectionRange(0, 0); | 6 textarea.setSelectionRange(0, 0); |
| 7 | 7 textarea.focus(); |
| 8 document.execCommand("InsertLineBreak"); | 8 document.execCommand("InsertLineBreak"); |
| 9 </script> | 9 </script> |
| OLD | NEW |