Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title>Horizontal Line</title>
5 </head>
6 <body>
7 <canvas id="c" width="128" height="64" style="direction:ltr"></canvas>
8 <script type="text/javascript">
9 var canvas = document.getElementById('c');
10 var ctx = canvas.getContext('2d');
12 ctx.strokeStyle = 'black';
13 ctx.beginPath();
14 ctx.moveTo(0,32);
15 ctx.lineTo(128,32);
16 ctx.stroke();
18 </script>
19 </body>
20 </html>