large-canvas.html (288B)
1 <!DOCTYPE HTML> 2 <html> 3 <body style="margin:0px; overflow:hidden"> 4 <canvas style="display:block" id="c" width="1024" height="1024"></canvas> 5 <script> 6 var ctx = document.getElementById("c").getContext("2d"); 7 ctx.fillStyle = "lime"; 8 ctx.fillRect(0, 0, 1024, 1024); 9 </script> 10 </body> 11 </html>