blob: a4f27de83434ac0f97a7cdf6000a4cc726a46270 [file] [log] [blame]
hyatt@apple.comafe62052008-09-03 18:13:39 +00001<html>
2<body>
3<canvas id="canvas" width=600 height=300 style="border:5px solid black">
4<script>
rniwa@webkit.org38608af2012-06-19 07:23:13 +00005if (window.testRunner)
6 testRunner.dumpAsText(true);
mdelaney@apple.com52b87e22011-03-31 00:00:59 +00007
hyatt@apple.comafe62052008-09-03 18:13:39 +00008var ctx = document.getElementById('canvas').getContext('2d');
9
10var x = 10;
11var y = 150;
12
13ctx.lineWidth = 1;
14ctx.beginPath();
15ctx.moveTo(0, 150);
16ctx.lineTo(600, 150);
17ctx.closePath();
18ctx.stroke();
19
20ctx.font = "32px 'Times New Roman'";
21
22var text = "Baseline";
23var w = ctx.measureText(text).width;
24ctx.fillText(text, x, y);
25x += w + 10;
26
27text = "Top";
28ctx.textBaseline = "top";
29w = ctx.measureText(text).width;
30ctx.fillText(text, x, y);
31x += w + 10;
32
33text = "Bottom";
34ctx.textBaseline = "bottom";
35w = ctx.measureText(text).width;
36ctx.fillText(text, x, y);
37x += w + 10;
38
39text = "Middle";
40ctx.textBaseline = "middle";
41w = ctx.measureText(text).width;
42ctx.fillText(text, x, y);
43x += w + 10;
44
45</script>