682460.html (346B)
1 <html> 2 <head> 3 <script> 4 5 function boom() 6 { 7 var f = function() { 8 document.documentElement.offsetHeight; 9 }; 10 window.addEventListener("DOMSubtreeModified", f, true); 11 12 document.getElementsByTagName("table")[0].setAttribute("cellpadding", "2"); 13 } 14 15 </script> 16 </head> 17 18 <body onload="boom();"> 19 <table><tr><td></td></tr></table> 20 </body> 21 </html>