4 <title>start-aligned ltr text
</title>
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');
13 ctx
.fillStyle
= 'black';
14 ctx
.textAlign
= 'start';
15 ctx
.fillText(str
, 64, 32);