696188-1.html 388 B

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