summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/abspos-in-multicol-with-spanner-crash.html
blob: c30a19d001b530c304def61e1e6d55dc0f6b0318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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=967180">
<div style="columns:2;">
  <br>
  <div style="column-span:all;"></div>
  <div style="position:relative;">
    <div style="position:absolute;">
      <div id="removeme"></div>
    </div>
  </div>
</div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(()=> {
      removeme.style.display = "none";
  }, "No crash");
</script>