Bug 575870 - Enable the firefox button on xp themed, classic, and aero basic. r=dao...
[mozilla-central.git] / layout / reftests / canvas / text-horzline.html
blob46c427f22b42b5ac5b921699f3aafeca7128d80a
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>