summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/text-measure.html
blob: 3fd08aefc19db9d144a1e07ae8a959df28b239f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<script>
function load() {
    var ctx = document.getElementById("canvas").getContext("2d");

    ctx.font = "bold 12px sans-serif";
    ctx.scale(4, 4);
    var str = "HeHeHeHe";
    var x = 0;
    for (var i = 0; i < str.length; ++i) {
        ctx.fillText(str[i], x, 15);
        x += ctx.measureText(str[i]).width;
    }
}
</script>
<body onload="load();">
<canvas id="canvas" width="400" height="200"></canvas>
</body>
</html>