696188-1.html (378B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 5 <script> 6 7 function boom() 8 { 9 var e = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 10 document.body.appendChild(e); 11 e.setAttribute("style", "transform: rotate3d(2, 3, 4, 45deg) scale(10);"); 12 e.offsetHeight; 13 e.setAttribute("style", "transition-duration: 1ms;"); 14 } 15 16 </script> 17 </head> 18 19 <body onload="boom();"></body> 20 </html>