Index: LayoutTests/fast/multicol/span/remove-spanner2.html |
diff --git a/LayoutTests/fast/multicol/span/remove-spanner2.html b/LayoutTests/fast/multicol/span/remove-spanner2.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..791d08cfa60813a07b1d85ef49ca4d57134e932c |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/span/remove-spanner2.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> |
+<p>There should be a black square below, and nothing else.</p> |
+<div style="width:32em;"> |
+ <div style="width:10em; height:5em; color:black; background:black;"></div> |
+ <div style="-webkit-columns:3; columns:3; -webkit-column-gap:1em; column-gap:1em; line-height:5em; orphans:1; widows:1;"> |
+ <div id="elm" style="-webkit-column-span:all; column-span:all;">x</div> |
+ <div style="color:black; background:black;">x</div> |
+ </div> |
+</div> |