blob: 439161202ea98aa7d9f54fb8849dfe1bb57655c6 [file] [log] [blame]
<!DOCTYPE html>
<p>There should be a green square below, and no red.</p>
<div id="root" style="column-fill:auto; width:300px; height:300px; background:red;">
<div style="width:100px;">
<div style="column-span:all; height:300px; background:green;" data-expected-width="300"></div>
</div>
</div>
<script src="../../../resources/check-layout.js"></script>
<script>
document.body.offsetTop;
document.getElementById("root").style.columns = "2";
checkLayout("#root");
</script>