OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style type="text/css" media="screen"> | 3 <style type="text/css" media="screen"> |
| 4 body { overflow: hidden; } |
4 html { | 5 html { |
5 zoom: 120%; | 6 zoom: 120%; |
6 } | 7 } |
7 </style> | 8 </style> |
8 <script> | 9 <script> |
9 function setup() { | 10 function setup() { |
10 var results = document.createElement('div'); | 11 var results = document.createElement('div'); |
11 results.id = "res"; | 12 results.id = "res"; |
12 results.appendChild(document.createTextNode("Results:")); | 13 results.appendChild(document.createTextNode("Results:")); |
13 document.body.appendChild(results); | 14 document.body.appendChild(results); |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 <option>twelve</option> | 84 <option>twelve</option> |
84 <option>thirteen</option> | 85 <option>thirteen</option> |
85 <option>fourteen</option> | 86 <option>fourteen</option> |
86 <option>fifteen</option> | 87 <option>fifteen</option> |
87 <option>sixteen</option> | 88 <option>sixteen</option> |
88 <option>seventeen</option> | 89 <option>seventeen</option> |
89 </select> | 90 </select> |
90 | 91 |
91 </body> | 92 </body> |
92 </html> | 93 </html> |
OLD | NEW |