| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title></title> | 3 <title></title> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 var changeCount = new Array(4); | 5 var changeCount = new Array(4); |
| 6 changeCount[1] = changeCount[2] = changeCount[3] = 0; | 6 changeCount[1] = changeCount[2] = changeCount[3] = 0; |
| 7 | 7 |
| 8 function test() | 8 function test() |
| 9 { | 9 { |
| 10 if (!window.eventSender) | 10 if (!window.eventSender) |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 <option value="three">Three</option> | 77 <option value="three">Three</option> |
| 78 </select> | 78 </select> |
| 79 <hr/> | 79 <hr/> |
| 80 This select is changed by a timeout in the test script. It should not f
ire onchange. | 80 This select is changed by a timeout in the test script. It should not f
ire onchange. |
| 81 <select name="switcher3" id="switcher3" onchange="changed(3)"> | 81 <select name="switcher3" id="switcher3" onchange="changed(3)"> |
| 82 <option value="one">One</option> | 82 <option value="one">One</option> |
| 83 <option value="two">Two</option> | 83 <option value="two">Two</option> |
| 84 </select> | 84 </select> |
| 85 </body> | 85 </body> |
| 86 </html> | 86 </html> |
| OLD | NEW |