summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/oof-becomes-spanner.html
blob: 4897e47dbc77ecf75041f8b561d56b9a1e494c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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=1317656">
<div style="columns:2;">
  <div>
    <div id="elm" style="position:absolute;"></div>
  </div>
</div>
<script>
  document.body.offsetTop;
  elm.style.position = "static";
  elm.style.columnSpan = "all";
  document.body.offsetTop;
  elm.style.display = "none";
</script>