blob: b01abe5a10b878f831d7a0c1cea727763abf3d6b [file] [log] [blame]
<!DOCTYPE html>
<script>
onload = function() {
var elm = document.getElementById('elm');
elm.offsetTop; // trigger layout
elm.style.display = 'none';
}
</script>
<style>
.spanner { -webkit-column-span:all; }
</style>
<p>Test removal of column content after a spanner.</p>
<p>You should see the word "PASS" on a lime background below.</p>
<div style="-webkit-columns:4; -webkit-column-gap:0; overflow:hidden; width:4em; background:lime;">
<div class="spanner">PASS</div>
<div id="elm">F<br>A<br>I<br>L</div>
</div>