Index: LayoutTests/fast/multicol/dynamic/remove-block-from-content-between-spanners.html |
diff --git a/LayoutTests/fast/multicol/dynamic/remove-block-from-content-between-spanners.html b/LayoutTests/fast/multicol/dynamic/remove-block-from-content-between-spanners.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fae0b902546bd6cd1255a578f9672130682c4ba8 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/remove-block-from-content-between-spanners.html |
@@ -0,0 +1,20 @@ |
+<!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 some of the column content that's between two spanners.</p> |
+<p>There should be four lines below with the word "PASS". Letter spacing is expected to vary.</p> |
+<div style="-webkit-columns:4; -webkit-column-gap:0; width:4em;"> |
+ <div class="spanner">PASS</div> |
+ P<br>P<br>A<br> |
+ <div id="elm">FAIL</div> |
+ A<br>S<br>S<br>S<br>S |
+ <div class="spanner">PASS</div> |
+</div> |