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/size-containment-become-multicol-add-inline-child.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="container" style="width:fit-content; container-type:size;">
<span></span>
<span id="boo" style="display:none;"></span>
</div>
<script>
document.body.offsetTop;
container.style.columnCount = "2";
boo.style.display = "inline";
</script>