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/inline-float-parallel-flow.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:2; column-fill:auto; height:200px; line-height:20px; orphans:1; widows:1;">
<div style="width:10px;">
bazinga
<span>
<div style="float:left; height:300px; contain:size;"></div>
<br>
</span>
</div>
<div id="e57" style="display:none;"></div>
</div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
e57.style.display = "block";
document.documentElement.classList.remove("reftest-wait");
});
});
</script>
</html>