summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/relpos-inline-with-abspos-multicol-gets-block-child.html
blob: 19a9bdde3afbe96b3e5d62d41a93bc750cdab1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1308071">
<div style="columns:2;">
  <span style="position:relative;">
    <div style="position:absolute;"></div>
  </span>
  <div id="surprise" style="display:none;"></div>
  <span></span>
</div>
<script>
  document.body.offsetTop;
  surprise.style.display = "block";
</script>