summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/float-becomes-non-float-spanner-surprises-inside.html
blob: 39fccf4522c497dad97a2ce1513d57cc19896da2 (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=1373409">
<div style="columns:2;">
  <div id="elm" style="margin-bottom:100px; float:left;">
    <div style="column-span:all;"></div>
    <div style="column-span:all;"></div>
  </div>
</div>
<script>
  document.body.offsetTop;
  elm.style.cssFloat = "none";
  elm.offsetTop;
</script>