summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/text-horzline.html
blob: 46c427f22b42b5ac5b921699f3aafeca7128d80a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
<head>
<title>Horizontal 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');

  ctx.strokeStyle = 'black';
  ctx.beginPath();
  ctx.moveTo(0,32);
  ctx.lineTo(128,32);
  ctx.stroke();

</script>
</body>
</html>