| 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 onchangeCount = 0; | 5 var onchangeCount = 0; |
| 6 | 6 |
| 7 function test() | 7 function test() |
| 8 { | 8 { |
| 9 if (!window.eventSender) | 9 if (!window.eventSender) |
| 10 return; | 10 return; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 </p> | 35 </p> |
| 36 <p id="result"> | 36 <p id="result"> |
| 37 To test interactively, select the other option in the pop up. This t
ext should change to SUCCESS. | 37 To test interactively, select the other option in the pop up. This t
ext should change to SUCCESS. |
| 38 </p> | 38 </p> |
| 39 <select name="switcher" id="switcher" onchange="changed(this)"> | 39 <select name="switcher" id="switcher" onchange="changed(this)"> |
| 40 <option value="one">One</option> | 40 <option value="one">One</option> |
| 41 <option value="two">Two</option> | 41 <option value="two">Two</option> |
| 42 </select> | 42 </select> |
| 43 </body> | 43 </body> |
| 44 </html> | 44 </html> |
| OLD | NEW |