blob: c6a9945e39d482457cba9629bfd3aa15744e5db4 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<p>There should be two black vertical lines below.</p>
<div id="container" style="width:304px;">
<div style="columns:3; column-rule:2px solid; column-gap:2px; column-fill:auto; height:100px;">
<div style="height:300px; background:white;"></div>
</div>
</div>
<script>
runAfterLayoutAndPaint(function() {
document.getElementById("container").style.width = "604px";
}, true);
</script>