https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2184b6756754ce9727f02b314ff13701993a5ac6 authored by ffxbld on 17 March 2017, 05:39:03 UTC
Added FENNEC_52_0_1_RELEASE FENNEC_52_0_1_BUILD1 tag(s) for changeset c2473a54d5d4. DONTBUILD CLOSED TREE a=release
Tip revision: 2184b67
text-measure-ref.html
<html>
<script>
function load() {
    var ctx = document.getElementById("canvas").getContext("2d");

    ctx.font = "bold 12px sans-serif";
    ctx.scale(4, 4);
    var str = "HeHeHeHe";
    ctx.fillText(str, 0, 15);
}
</script>
<body onload="load();">
<canvas id="canvas" width="400" height="200"></canvas>
</body>
</html>
back to top