summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bidi/151407-2-auto.html
blob: d1b04fd245fbfb8f29290b400dc16d6fdad95d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html dir="auto">
  <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>