3 window
.onload = function() {
4 var context
= document
.getElementById('c').getContext('2d');
7 context
.rect(0,0,75,75);
9 context
.fillStyle
= 'green';
10 context
.fillRect(0,0,30,30);
11 context
.fillRect(50,50,30,30);
14 <p>Two green squares of different sizes should appear below
</p>
15 <canvas id=
"c" width=
"300" height=
"300"></canvas>