Index: LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow.html |
diff --git a/LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow.html b/LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..201936d6a17795c1f44b58ea70651990e785e129 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow.html |
@@ -0,0 +1,22 @@ |
+<!DOCTYPE html> |
+<style> |
+.spanner { -webkit-column-span:all; } |
+.none { display:none; } |
+</style> |
+ |
+<p>Insert a spanner between two absolutely positioned elements.</p> |
+<p>There should be three lines below, numbered from 1 to 3.</p> |
+<div style="-webkit-column-count:2;"> |
+ 1 |
+ <div style="-webkit-column-span:all;">2</div> |
+ <div style="position:absolute;"></div> |
+ <div id="becomesSpanner" class="none">3</div> |
+ <div style="position:absolute;"></div> |
+</div> |
+ |
+<script> |
+onload = function() { |
+ document.body.offsetTop; |
+ document.getElementById("becomesSpanner").className = "spanner"; |
+} |
+</script> |