| Index: LayoutTests/fast/multicol/span/remove-row-content2.html
|
| diff --git a/LayoutTests/fast/multicol/span/remove-row-content2.html b/LayoutTests/fast/multicol/span/remove-row-content2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..19827475c0150d44363e24d1b04ab3d1fe6004c4
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/span/remove-row-content2.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + if (window.internals)
|
| + internals.settings.setRegionBasedColumnsEnabled(true);
|
| + onload = function() {
|
| + var elm = document.getElementById('elm');
|
| + elm.offsetTop; // trigger layout
|
| + elm.style.display = 'none';
|
| + }
|
| +</script>
|
| +<style>
|
| + .spanner { -webkit-column-span:all; column-span:all; }
|
| +</style>
|
| +<p>You should see the word "PASS" on a lime background below.</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; background:lime;">
|
| + <div class="spanner">PASS</div><div id="elm">F<br>A<br>I<br>L</div></div>
|
| +</div>
|
|
|