summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/toggle-spanner-float-crash.html
blob: d5948b2dd67085108e22fde4ba7a7229b746c92b (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=1219401">
<div style="columns:2;">
  <span>
    <div id="div0" style="column-span:all; float:right;"></div>
    <div id="div1" style="column-span:all;"></div>
  </span>
</div>
<script>
  document.body.offsetTop;
  div0.style.float = "none";
  div1.style.float = "right";
</script>