| Index: LayoutTests/fast/multicol/span/remove-spanner3.html
|
| diff --git a/LayoutTests/fast/multicol/span/remove-spanner3.html b/LayoutTests/fast/multicol/span/remove-spanner3.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5dff57bd0c4e49aa72addc56d472ae93505a533e
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/multicol/span/remove-spanner3.html
|
| @@ -0,0 +1,16 @@
|
| +<!DOCTYPE html>
|
| +<script>
|
| + onload = function() {
|
| + var elm = document.getElementById('elm');
|
| + elm.offsetTop; // trigger layout
|
| + elm.style.display = 'none';
|
| + }
|
| +</script>
|
| +<p>There should be a black square below, and nothing else.</p>
|
| +<div style="width:32em;">
|
| + <div style="-webkit-columns:3; columns:3; -webkit-column-gap:1em; column-gap:1em; line-height:5em; orphans:1; widows:1;">
|
| + <div style="color:black; background:black;">x</div>
|
| + <div id="elm" style="-webkit-column-span:all; column-span:all;">x</div>
|
| + </div>
|
| + <div style="width:10em; height:5em; color:black; background:black;"></div>
|
| +</div>
|
|
|