summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/crashtests/remove-spanner-after-spanner-in-inline-before-inline.html
blob: 0836ef1a91ef921194209a6a4642b67d90a02b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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=1308253">
<style>
  #mc { columns: 2; }
  #mc div { column-span: all; }
</style>
<div id="mc">
  <span><div></div></span><div id="removeme"></div><span id="removemetoo"></span><div></div>
</div>
<script>
  document.body.offsetTop;
  removeme.style.display = "none";
  document.body.offsetTop;
  removemetoo.style.display = "none";
</script>