2008-06-10 16:16:59 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Test to ensure top basline-anchored text doesn't intersect horz line</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<canvas id="c" width="128" height="64" style="direction:ltr"></canvas>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var canvas = document.getElementById('c');
|
|
|
|
var ctx = canvas.getContext('2d');
|
|
|
|
|
2008-07-18 11:29:06 -07:00
|
|
|
ctx.fillStyle = 'white';
|
|
|
|
ctx.fillRect(0, 0, canvas.width, canvas.height)
|
|
|
|
|
2008-06-10 16:16:59 -07:00
|
|
|
ctx.strokeStyle = 'black';
|
|
|
|
ctx.beginPath();
|
|
|
|
ctx.moveTo(0,32);
|
|
|
|
ctx.lineTo(128,32);
|
|
|
|
ctx.stroke();
|
|
|
|
|
2008-09-25 17:49:16 -07:00
|
|
|
ctx.font = '30px sans-serif';
|
2008-06-10 16:16:59 -07:00
|
|
|
ctx.textBaseline = 'top';
|
|
|
|
ctx.fillText('TEXT', 64, 32);
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|