1140268-1.html (387B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <script> 6 function boom() 7 { 8 var e = document.getElementsByTagName("mo")[0]; 9 e.setAttribute("style", "position: absolute; top: 0px;"); 10 document.documentElement.offsetHeight; 11 e.setAttribute("style", "position: absolute; top: 100px;"); 12 } 13 </script> 14 </head> 15 <body onload="boom();"> 16 <math><mo>boom!</mo></math> 17 </body> 18 </html>