| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <script src="../../js/resources/js-test-pre.js"></script> | 5 <script src="../../js/resources/js-test-pre.js"></script> |
| 6 <script> | 6 <script> |
| 7 window.jsTestIsAsync = true; | 7 window.jsTestIsAsync = true; |
| 8 | 8 |
| 9 var finishTest = false; | 9 var finishTest = false; |
| 10 | 10 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 <p>Selecting menu list options using up/down key should fire onchange event</p> | 49 <p>Selecting menu list options using up/down key should fire onchange event</p> |
| 50 | 50 |
| 51 <select id="bug-test" onChange="optionChanged()"> | 51 <select id="bug-test" onChange="optionChanged()"> |
| 52 <option>option 1</option> | 52 <option>option 1</option> |
| 53 <option>option 2</option> | 53 <option>option 2</option> |
| 54 <option>option 3</option> | 54 <option>option 3</option> |
| 55 <option>option 4</option> | 55 <option>option 4</option> |
| 56 </select> | 56 </select> |
| 57 | 57 |
| 58 <div id="console"></div> | 58 <div id="console"></div> |
| 59 <script src="../../js/resources/js-test-post.js"></script> | |
| 60 </body> | 59 </body> |
| 61 </html> | 60 </html> |
| OLD | NEW |