blob: 8522c822c0b604e3bdb35e66e8e588a34d666293 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Remove all content from row before spanner, then insert some content there</title>
<style>
.spanner { -webkit-column-span:all; column-span:all; }
</style>
</head>
<body>
<p>You should see two lines with the word "PASS" on a lime background below.</p>
<div style="float:left;">
<div style="-webkit-columns:4; columns:4; column-gap:0; -webkit-column-gap:0; orphans:1; widows:1; background:lime;">
<div>P<br>A<br>S<br>S</div>
<div class="spanner">PASS</div>
</div>
</div>
</body>
</html>