https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 2184b6756754ce9727f02b314ff13701993a5ac6 authored by ffxbld on 17 March 2017, 05:39:03 UTC
Added FENNEC_52_0_1_RELEASE FENNEC_52_0_1_BUILD1 tag(s) for changeset c2473a54d5d4. DONTBUILD CLOSED TREE a=release
Tip revision: 2184b67
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