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