https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 0ecc076d496e3be9b44131a2923897edc4e8116c authored by Brian Smith on 16 February 2013, 19:21:13 UTC
Bug 842064: Fix build bustage caused by expired certificates in test_signed_apps.js on a CLOSED TREE, a=bustage, a=testonly
Tip revision: 0ecc076
562169-4.html
<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title>dir() selector</title>
  <style>
   :-moz-dir(ltr) { color: blue }
   :-moz-dir(rtl) { color: lime }
   div { text-align: left; }
  </style>
  <script type="text/javascript">
function AppendElementWithChild() {
    var x = document.createElement("span");
    x.innerHTML = "This span should inherit rtl from the parent. ";

    var y = document.createElement("span");
    y.innerHTML = "This span should inherit rtl from the grandparent.";

    var z = document.getElementById("z");

    x.appendChild(y);
    z.appendChild(x);
}
  </script>
 </head>
 <body onload="AppendElementWithChild()">
  <div id="z" dir="rtl">This element is rtl. </div>
 </body>
</html>
back to top