602200-1.html (281B)
1 <!DOCTYPE HTML> 2 <html> 3 <body> 4 <canvas id="c" width="200" height="20" style="position:absolute; top:10.4px; left:0"></canvas> 5 <script> 6 var c = document.getElementById("c"); 7 var ctx = c.getContext("2d"); 8 ctx.fillStyle = "black"; 9 ctx.fillRect(0, 0, 200, 1); 10 </script> 11 </body> 12 </html>