geometry-border-image-005-ref.html (428B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 html, body { margin: 0; padding: 0; } 5 </style> 6 <body> 7 <canvas id ="canvas" width="308" height="308"></canvas> 8 <script> 9 var canvas = document.getElementById('canvas'); 10 var context = canvas.getContext("2d"); 11 context.fillStyle = "green"; 12 context.fillRect(0, 0, 290, 18); 13 context.fillRect(0, 0, 18, 290); 14 context.fillRect(0, 254, 290, 36); 15 context.fillRect(254, 0, 36, 290); 16 </script> 17 </body> 18 </html>