blob: 0ad2e8934887d0a3676d42552897b0e9de74576f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Remove some content from row after spanner</title>
<script>
function test() {
var elm = document.getElementById('elm');
elm.offsetTop; // trigger layout
elm.style.display = 'none';
}
</script>
<style>
.spanner { -webkit-column-span:all; column-span:all; }
</style>
</head>
<body onload="test()">
<p>There should be three lines below with the word "PASS". Letter spacing is expected to vary</p>
<div style="float:left; overflow:hidden;">
<div style="-webkit-columns:4; columns:4; column-gap:0; -webkit-column-gap:0; orphans:1; widows:1;">
<div class="spanner">PASS</div>
P<br>P<br>A<br>
<div id="elm">FAIL</div>
A<br>S<br>S<br>S<br>S
</div>
</div>
</body>
</html>