summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/dynamic-simplified-layout-break-propagation.html
blob: c675b50f9420fa94d112df46fe81e13f55befe89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<body style="columns: 1;">
  <div style="display: inline-block; position: relative;">
    <div style="position: absolute;">
      <div id="target"></div>
    </div>
    <div style="break-before: column;"></div>
  </div>
</body>
<script>
document.body.offsetTop;
document.getElementById('target').style.height = '10px';
</script>