| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <p>To run this test manually, press arrow keys three times. WebKit should not cr
ash. On DRT, you see see PASS:</p> | 4 <p>To run this test manually, press arrow keys three times. WebKit should not cr
ash. On DRT, you see see PASS:</p> |
| 5 <input type="text" onkeydown="move(this.nextSibling)" | 5 <input type="text" onkeydown="move(this.nextSibling)" |
| 6 ><input type="text" onkeydown="move(this.nextSibling)" | 6 ><input type="text" onkeydown="move(this.nextSibling)" |
| 7 ><input type="text" onkeydown="move(this.nextSibling)" | 7 ><input type="text" onkeydown="move(this.nextSibling)" |
| 8 ><input type="text" onkeydown="move(this.nextSibling)" | 8 ><input type="text" onkeydown="move(this.nextSibling)" |
| 9 ><input type="text" onkeydown="move(this.nextSibling)" | 9 ><input type="text" onkeydown="move(this.nextSibling)" |
| 10 ><input type="text" onkeydown="move(this.nextSibling)"> | 10 ><input type="text" onkeydown="move(this.nextSibling)"> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 activeInput.style.display = 'none'; | 24 activeInput.style.display = 'none'; |
| 25 activeInput = newInput; | 25 activeInput = newInput; |
| 26 } | 26 } |
| 27 | 27 |
| 28 var inputs = document.getElementsByTagName('input'); | 28 var inputs = document.getElementsByTagName('input'); |
| 29 move(inputs[0]); | 29 move(inputs[0]); |
| 30 | 30 |
| 31 if (window.eventSender) { | 31 if (window.eventSender) { |
| 32 testRunner.waitUntilDone(); | 32 testRunner.waitUntilDone(); |
| 33 for (var i = 0; i < inputs.length - 1; i++) | 33 for (var i = 0; i < inputs.length - 1; i++) |
| 34 eventSender.keyDown('downArrow', []); | 34 eventSender.keyDown('ArrowDown', []); |
| 35 testRunner.notifyDone(); | 35 testRunner.notifyDone(); |
| 36 } | 36 } |
| 37 | 37 |
| 38 document.body.appendChild(document.createTextNode('PASS')); | 38 document.body.appendChild(document.createTextNode('PASS')); |
| 39 </script> | 39 </script> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| OLD | NEW |