summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/617242-1.html
blob: c3146275348d6311aa1661165b6386de5dfd25c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE HTML>
<html>
<body>
<canvas id="c" width="200" height="200" style="border:1px solid black; transform:scaleY(-1);"></canvas>
<script>
var ctx = document.getElementById("c").getContext("2d");
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, 200, 50);
</script>
</body>
</html>