summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/text-bidi-rtl-ref.html
blob: c264e7104ef11c74657840418a282411034cc1c7 (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>Test to ensure bidi is resolved correctly</title>
</head>
<body>
<canvas id="c" width="256" height="64" style="direction:rtl"></canvas>
<script type="text/javascript">
  var canvas = document.getElementById('c');
  var ctx = canvas.getContext('2d');

  var str = "goodbye\u202D\u05DD\u05D5\u05DC\u05E9\u202Chello";

  ctx.fillStyle = 'black';
  ctx.font = '10px sans-serif';
  ctx.fillText(str, 128, 32);

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