| 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 21 matching lines...) Expand all Loading... |
| 32 layoutTestController.waitUntilDone(); | 32 layoutTestController.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('downArrow', []); |
| 35 layoutTestController.notifyDone(); | 35 layoutTestController.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 |