Index: LayoutTests/fast/multicol/dynamic/remove-block-before-spanner.html |
diff --git a/LayoutTests/fast/multicol/dynamic/remove-block-before-spanner.html b/LayoutTests/fast/multicol/dynamic/remove-block-before-spanner.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6eaa97e6a17b2e1fe5243adb97e9da49e99ff4e4 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/remove-block-before-spanner.html |
@@ -0,0 +1,14 @@ |
+<!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; } |
+</style> |
+<p>Test removal of column content before a spanner.</p> |
+<p>You should see the word "PASS" on a lime background below.</p> |
+<div style="-webkit-columns:4; -webkit-column-gap:0; overflow:hidden; width:4em; background:lime;"><div id="elm">F<br>A<br>I<br>L</div><div class="spanner">PASS</div></div> |