summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-paint-api/background-image-multiple-ref.html
blob: 536258be74c8569d5286222be908aa4a3ef19aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<body>
<canvas id ="output" width="100" height="100"></canvas>
<script>
var canvas = document.getElementById('output');
var ctx = canvas.getContext('2d');

var colors = ['red', 'green', 'blue'];
for (var i = 2; i >= 0; i--) {
    ctx.fillStyle = colors[i];
    ctx.fillRect(i * 20, i * 20, 40, 40);
}
</script>
</body>
</html>