summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/float-becomes-spanner.html
blob: 90a4c9079c4fa6c64c094c56e36efbfe413b850c (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="float:left;"></div>
  </div>
</div>
<script>
  document.body.offsetTop;
  elm.style.cssFloat = "none";
  elm.style.columnSpan = "all";
  document.body.offsetTop;
  elm.style.display = "none";
</script>