summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/absolute-crash.html
blob: d45582560760c03163d3dc941e4aca6b0f03c588 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/958381">
<table style="position: relative; max-height: 10px;">
  <caption>caption</caption>
  <td><div id=target style="position: absolute;"></div></td>
</table>
<script>
  document.body.offsetTop;
  document.getElementById('target').style.top = '10px';
</script>