1229972.html (285B)
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.scale(2, 0); 11 ctx.fillText("AB", 0, 0, 1); 12 } 13 14 </script> 15 </head> 16 <body onload="boom();"></body> 17 </html>