summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bidi/151407-3-rtl.html
blob: 781cd6f7956e8e36a641682333ca98cd66c4ac76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html dir="ltr">
  <head>
    <meta charset="utf-8">
    <title>Test SetDir() for documents</title>
    <script type="text/javascript">
function fill() {
    document.dir = "rtl"
    span = document.getElementById("span0");
    span.innerHTML = document.dir;
}
    </script>
  </head>
  <body onLoad="fill()">
    <div>getDir on document after setDir returns "<span id="span0"></span>"</div>
  </body>
</html>