| <title>Inserting text</title> |
| background-color: yellow; |
| <p>This tests inserting text ("b") into a text field with specific CSS |
| and an already existing text ("a"). |
| To manually test, copy and paste some text into the text field below. |
| Pasting should work as expected.</p> |
| <input type="text" id="input" value="a" /> |
| var input = document.getElementById("input"); |
| input.setSelectionRange(1, 1); |
| document.execCommand("InsertHTML", false, "b"); |
| log.innerText = "PASSED the final text is 'ab'."; |
| log.innerText = "FAILED the final text is not 'ab'."; |