background-repeat-x-ref.html (266B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id ="canvas" width="200" height="200"></canvas> 5 <script> 6 var ctx = document.getElementById('canvas').getContext('2d'); 7 ctx.fillStyle = 'green'; 8 ctx.fillRect(0, 0, 50, 50); 9 ctx.fillRect(100, 0, 50, 50); 10 </script> 11 </body> 12 </html>