gecko-dev/layout/reftests/canvas/text-measure-ref.html

16 строки
324 B
HTML
Исходник Обычный вид История

2011-06-29 04:35:39 +04:00
<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>