summaryrefslogtreecommitdiffstats
path: root/layout/tables/test/test_bug337124.html
blob: d92a7e31f94822216c3c2c746d897cdf9d059480 (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
<html><head>
<title>Test for Bug 337124</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>        
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=337124">Mozilla Bug 337124</a>

<span style="display: table-row-group;">
    <input type="text">
  </span>
  <div style="display: table-column-group;">
    <script>document.body.offsetHeight;</script>
  </div><span style="display: table-row-group;">
          <input id="i1" type="text">
        </span><fieldset id="f1" style="display: table-column-group;">
               </fieldset>
</fieldset>

<pre id="test">
<script class="testbody" type="text/javascript">
var passed = false;
if ( document.getElementById("f1").offsetTop >  document.getElementById("i1").offsetTop) {
  passed = true;
}

ok(passed, "right layout order");

</script> 
</pre>
</body>
</html>