4 <title>measureText directionality
</title>
7 canvas { background: green; }
11 <h1>measureText directionality
</h1>
12 <canvas id=
"canvas" width=
"150" height=
"150"></canvas>
14 There should be a green box above with no red.
17 var text
= '\u200D\u0628';
18 var canvas
= document
.getElementById('canvas');
19 var context
= canvas
.getContext('2d');
20 context
.font
= '48pt Times New Roman';
21 context
.fillStyle
= 'red';
22 context
.fillText(text
, 50, 100);
23 var width
= context
.measureText(text
).width
+ 4;
24 context
.fillStyle
= 'green';
25 context
.fillRect(50, 1, width
, 148);