| 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..b39b2309af851bbaed2736aaf3a721b56ceb33c5
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/span/remove-row-content2.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 class="spanner">PASS</div><div id="elm">F<br>A<br>I<br>L</div></div>
|
| +</div>
|
|
|