blob: 90e87520253d0ba339c090cbb22cf71057f0cef6 [file] [log] [blame]
<input id="input" type="text" value="word another">
<p>Tests option-deleting a word. If the test succeeds, the word "word" should end up with a space after it.</p>
<script>
var input = document.getElementById("input");
input.focus();
input.setSelectionRange(12, 12);
if (window.eventSender) {
eventSender.keyDown(String.fromCharCode(127), ["altKey"]);
}
</script>