340733-1.html (594B)
1 <html class="reftest-wait"> 2 3 <head> 4 <script type="text/javascript"> 5 6 7 function boom() 8 { 9 var map = document.getElementById("map"); 10 var table = document.getElementById("table"); 11 12 map.appendChild(table); 13 map.childNodes[0].appendChild(document.createTextNode(' ')); 14 15 document.documentElement.removeAttribute("class"); 16 } 17 18 </script> 19 </head> 20 21 <body onload="setTimeout(boom, 30);"> 22 23 <img src="../../../testing/crashtest/images/tree.gif" usemap="#map"> 24 <map name="map" id="map"><area></map> 25 <table aardvark="aardvark" id="table"><tbody><tr><td>Table</td></tr></tbody></table> 26 27 </body> 28 </html>