summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/caption-position.html
blob: 992794bb5c5d5f2c01ac44bf5d8833871354536e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
Test passes if above is on top.
<table cellspacing="0" cellpadding="0">
  <caption>
    <div style="position:relative; height:2em;">
      <div id="elm" style="position:absolute; left:0;">above</div>
    </div>
  </caption>
  <tr>
    <td>below</td>
  </tr>
</table>

<script>
onload = function() {
  document.body.offsetTop;
  document.getElementById('elm').style.left = '1px';
}
</script>