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/nested-with-oof-inside-fixed-width.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="outer" style="columns:2; column-fill:auto; height:20px; width:100px;">
<div style="position:relative; columns:2; column-fill:auto;">
<div style="width:10px; position:relative;">
<div style="position:absolute; right:0; bottom:0;"></div>
</div>
<div style="position:absolute;"></div>
</div>
</div>
<script>
document.body.offsetTop;
outer.style.width = "101px";
</script>