Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/crashtests/oof-in-additional-column-before-spanner.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<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>