summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1121748-1.html
blob: 85c81a5636c51cb1ad2ce8b39472218091bb220d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
  <title>Bug 1121748-1</title>
  <meta charset=utf-8>
  <style>
    html { width: 25%; }
    ul {
      margin: 0;
      padding: 0;
      border: 1px solid green;
    }
    ul li {
      position: relative;
      margin: 2px 10px;
      background: #eee;
      display: block;
    }
    ul li[hidden] {
      display: none;
    }
  </style>
  <script>
  function test() {
    document.body.dir = 'rtl';
    document.querySelector('#test').offsetHeight;
    document.querySelector('#test').hidden = false;
  }
  </script>
</head>
<body onload="test()">
  <ul>
    <li id="test" hidden> item #1 </li>
    <li> item #2 </li>
    <li> item #3 </li>
  </ul>
</body>
</html>