blob: 9f2ab60b794a7e35c118fa2a5ff502c7ee3cfc85 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Adjacent column spanners</title>
<script>
if (window.internals)
internals.settings.setRegionBasedColumnsEnabled(true);
</script>
</head>
<body>
<p>You should see the word 'PASS' twice below, and no red:</p>
<div style="-webkit-columns:4; columns:4; -webkit-column-gap:0; column-gap:0; width:4em;">
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FAIL<br>&nbsp;
<div style="background:red;">
<div style="-webkit-column-span:all; column-span:all;">PASS<br>&nbsp;</div>
<div style="-webkit-column-span:all; column-span:all;">PASS<br>&nbsp;</div>
</div>
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FAIL<br>&nbsp;
</div>
</body>
</html>