| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 function log(message) | 4 function log(message) |
| 5 { | 5 { |
| 6 var element = document.createElement("p"); | 6 var element = document.createElement("p"); |
| 7 element.appendChild(document.createTextNode(message)); | 7 element.appendChild(document.createTextNode(message)); |
| 8 document.getElementById("results").appendChild(element); | 8 document.getElementById("results").appendChild(element); |
| 9 } | 9 } |
| 10 function runTest() | 10 function runTest() |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 <div style="height:5000px"></div> | 44 <div style="height:5000px"></div> |
| 45 <map name="imagemap"> | 45 <map name="imagemap"> |
| 46 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy"> | 46 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy"> |
| 47 </map> | 47 </map> |
| 48 <img src="resources/mu.png" width="128" height="128" usemap="#imagemap" ismap> | 48 <img src="resources/mu.png" width="128" height="128" usemap="#imagemap" ismap> |
| 49 <div style="height:5000px"></div> | 49 <div style="height:5000px"></div> |
| 50 <div> | 50 <div> |
| 51 </body> | 51 </body> |
| 52 </head> | 52 </head> |
| 53 </html> | 53 </html> |
| OLD | NEW |