Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-break/flexbox/fixed-flex-item-inside-abs-flex-in-multicol-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="elm" style="contain:layout; width:200px;">
<div style="columns:2;">
<div style="display:flex; padding:10%; position:absolute;">
<div style="position:fixed;"></div>
</div>
</div>
</div>
<script>
document.body.offsetTop;
elm.style.width = "199px";
</script>