710149-1.html (500B)
1 <!DOCTYPE html> 2 3 <script> 4 5 function boom() 6 { 7 var d = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 8 d.style.setProperty("transform", "translate(0pt, 10px)", ""); 9 d.style.setProperty("opacity", "0.8", ""); 10 d.style.setProperty("background-color", "gray", ""); 11 var c = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas"); 12 (d).appendChild(c); 13 (document.body).appendChild(d); 14 c.getContext("2d"); 15 } 16 17 </script> 18 19 <body onload="setTimeout(boom, 100);"></body>