summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/bug445162-expected.html
blob: 413ec26d72460a7096e113602dcdb225194e2ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<body>
<p>A green square should appear below this text.</p>
<canvas id="c" width="100" height="100"></canvas>
<script>
window.onload = function() {
    var canvas = document.getElementById("c")
    var ctx = canvas.getContext("2d")
    ctx.fillStyle = 'green';
    ctx.fillRect(0, 0, 100, 100);
}
</script>
</body>
</html>