806056-1.html (250B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 document.getElementsByTagName("td")[0].style.position = "absolute"; 9 } 10 11 </script> 12 </head> 13 <body onload="boom();"> 14 <table border=1><tbody><tr><td>X</td></tr></tbody></table> 15 </body> 16 </html>