https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9ad326648f0aa5da41184b47edc51f085e0d6ac0 authored by Karl Tomlinson on 14 July 2015, 16:31:00 UTC
Bug 1137076 - Fix music app crashes when quickly tapping the FF button. r=edwin, a=mahe
Tip revision: 9ad3266
151407-2-rtl.html
<!DOCTYPE html>
<html dir="rtl">
  <head>
    <meta charset="utf-8">
    <title>Test GetDir() for documents</title>
    <script type="text/javascript">
function fill() {
    span = document.getElementById("span0");
    span.innerHTML = document.dir;
}
    </script>
  </head>
  <body onLoad="fill()">
    <div>getDir on document returns "<span id="span0"></span>"</div>
  </body>
</html>
back to top