https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d3e2d6b74a72b51257feb4bd8807e74ea1470d0d authored by Kai Engert on 23 September 2014, 18:44:11 UTC
Bug 1064636 - Update NSS to version 3.16.2.1. r=rrelyea, a=bajaj
Tip revision: d3e2d6b
536963-1.html
<!DOCTYPE HTML>
<html>
 <head>
  <title>Dynamic bidi bug</title>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <style type="text/css">
  p { width: 3ch;}
  </style>
  <script type="text/javascript">
function flip()
{
    var flipped= document.getElementById('flipped');
    flipped.dir = "rtl";
}
  </script>
 </head>
 <body onload="flip()">
  <p id="flipped">0 123 4</p>
 </body>
</html>
back to top