a703ef7ef10c2cdeefac1de2d680d562446a3c1d
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / forms / input-text-option-delete.html
1 <input id="input" type="text" value="word another">
2 <p>Tests option-deleting a word. If the test succeeds, the word "word" should end up with a space after it.</p>
3 <script>
4
5 function sendDeleteWordKey()
6 {
7     var deleteWordModifiers;
8     if (navigator.userAgent.search(/\bMac OS X\b/) != -1)
9         deleteWordModifiers = ["altKey"];
10     else
11         deleteWordModifiers = ["ctrlKey"];
12     if (window.eventSender)
13         eventSender.keyDown(String.fromCharCode(8), deleteWordModifiers);
14 }
15
16 var input = document.getElementById("input");
17 input.focus();
18 input.setSelectionRange(12, 12);
19 sendDeleteWordKey();
20 </script>