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="../../resources/js-test.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> |
11 This tests the behavior of a cancel button in search input forms. | 11 This tests the behavior of a cancel button in search input forms. |
12 </p> | 12 </p> |
13 </div> | 13 </div> |
14 <script> | 14 <script> |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 </body> | 126 </body> |
127 </html> | 127 </html> |
OLD | NEW |