https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 36854b88b1ee2c15d7298c5ba8145ffc539ca22e authored by ffxbld on 17 July 2014, 20:04:59 UTC
Added FIREFOX_31_0esr_RELEASE FIREFOX_31_0esr_BUILD2 tag(s) for changeset 3a54de2c276e. DONTBUILD CLOSED TREE a=release
Tip revision: 36854b8
text-bidi-ltr-notref.html
<!DOCTYPE HTML>
<html>
<head>
<title>Test to ensure bidi is resolved correctly</title>
</head>
<body>
<canvas id="c" width="256" height="64" style="direction:ltr"></canvas>
<script type="text/javascript">
  var canvas = document.getElementById('c');
  var ctx = canvas.getContext('2d');

  // Bug 698185 caused the RTL and trailing LTR runs to be lost
  // var str = "hello\u05E9\u05DC\u05D5\u05DDgoodbye";
  var str = "hello";

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

</script>
</body>
</html>
back to top