summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/579349-1.html
blob: d2e9239b889be54b3b4dca2ec43d2c2709aa553b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<body>
<canvas id="c" width="500" height="200"></canvas>
<div style="position:absolute; left:0; top:0; height:100px; width:100%; background:yellow"></div>
<script>
var c = document.getElementById("c");
var ctx = c.getContext("2d");
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, c.width, c.height);
</script>
</body>
</html>