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