| Index: LayoutTests/fast/multicol/span/remove-row-content4.html
|
| diff --git a/LayoutTests/fast/multicol/span/remove-row-content4.html b/LayoutTests/fast/multicol/span/remove-row-content4.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e2404ca66ef9697953245f634720e1301fe788b5
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/span/remove-row-content4.html
|
| @@ -0,0 +1,16 @@
|
| +<!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; 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 id="elm">F<br>A<br>I<br>L</div><div class="spanner">PASS</div>
|
| + </div>
|
| +</div>
|
|
|