| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
| 5 <script src="resources/common.js"></script> | 5 <script src="resources/common.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <input id="search_input" type="search" /> | 8 <input id="search_input" type="search" /> |
| 9 <div id="console"> | 9 <div id="console"> |
| 10 <p> | 10 <p> |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 debug("Click the center of the form:"); | 116 debug("Click the center of the form:"); |
| 117 click(middleButtonPosition); | 117 click(middleButtonPosition); |
| 118 shouldBe('input.value', '"foo"'); | 118 shouldBe('input.value', '"foo"'); |
| 119 debug("... and then input one character:"); | 119 debug("... and then input one character:"); |
| 120 keydown("b"); | 120 keydown("b"); |
| 121 shouldBe('input.value', '"foo"'); | 121 shouldBe('input.value', '"foo"'); |
| 122 | 122 |
| 123 debug(""); | 123 debug(""); |
| 124 } | 124 } |
| 125 </script> | 125 </script> |
| 126 <script src="../js/resources/js-test-post.js"></script> | |
| 127 </body> | 126 </body> |
| 128 </html> | 127 </html> |
| OLD | NEW |