1190705.html (260B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var canvas = document.createElement('canvas'); 9 var ctx = canvas.getContext('2d'); 10 ctx.rotate(1e308); 11 ctx.fillText("A", 1, 1); 12 } 13 14 </script> 15 </head> 16 <body onload="boom();"></body> 17 </html>