| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 function setup() | 4 function setup() |
| 5 { | 5 { |
| 6 var results = document.createElement('div'); | 6 var results = document.createElement('div'); |
| 7 results.id = "res"; | 7 results.id = "res"; |
| 8 results.appendChild(document.createTextNode("Results:")); | 8 results.appendChild(document.createTextNode("Results:")); |
| 9 document.body.appendChild(results); | 9 document.body.appendChild(results); |
| 10 } | 10 } |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 </head> | 185 </head> |
| 186 <body onload="test()"> | 186 <body onload="test()"> |
| 187 <select id="sl1" size=5 multiple onchange="log('onChange fired')"> | 187 <select id="sl1" size=5 multiple onchange="log('onChange fired')"> |
| 188 <option selected value="0">item 0</option> | 188 <option selected value="0">item 0</option> |
| 189 <option value="1">item 1 | 189 <option value="1">item 1 |
| 190 <option value="2">item 2 | 190 <option value="2">item 2 |
| 191 <option value="3">item 3 | 191 <option value="3">item 3 |
| 192 </select> | 192 </select> |
| 193 </body> | 193 </body> |
| 194 </html> | 194 </html> |
| OLD | NEW |