| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../../resources/js-test.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 <script src="../resources/picker-common.js"></script> | 6 <script src="../resources/picker-common.js"></script> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <select id="menu"> | 9 <select id="menu"> |
| 10 <option selected>foo</option> | 10 <option selected>foo</option> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 picker.on("didUpdate", function () { | 71 picker.on("didUpdate", function () { |
| 72 setTimeout(function () { | 72 setTimeout(function () { |
| 73 shouldBeEqualToString('picker._selectElement.value', '2'); | 73 shouldBeEqualToString('picker._selectElement.value', '2'); |
| 74 finishJSTest(); | 74 finishJSTest(); |
| 75 }, 0); | 75 }, 0); |
| 76 }); | 76 }); |
| 77 } | 77 } |
| 78 </script> | 78 </script> |
| 79 </body> | 79 </body> |
| 80 </html> | 80 </html> |
| OLD | NEW |