summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/text-subpixel-1.html
blob: b93d5a01195138cb4c9b4fb2efa4d70a4fe80a5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML>
<html>
<body>
<canvas moz-opaque id="c" width="500" height="500"></canvas>
<script>
var ctx = c.getContext('2d');
ctx.fillStyle = "white";
ctx.fillRect(0, 0, 500, 500);
ctx.fillStyle = "black";
ctx.font = "50px sans-serif";
ctx.fillText("Hello", 200, 200);
</script>
</body>
</html>