chromium/third_party/blink/web_tests/external/wpt/css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html

<!DOCTYPE html>
<html class="reftest-wait">
  <link rel="author" title="Morten Stenshorne" href="mailto:[email protected]">
  <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1361902">
  <div style="columns:1;">
    <div style="float:left; padding-top:10px; position:relative;">
      <div style="position:absolute; height:2px;"></div>
      <div id="elm" style="display:inline-block;"></div>
    </div>
    <span>
      <div style="column-span:all;"></div>
    </span>
  </div>
  <script>
    requestAnimationFrame(()=>{
      requestAnimationFrame(()=>{
        elm.style.display = "none";
        document.documentElement.classList.remove("reftest-wait");
      });
    });
  </script>
</html>