Index: LayoutTests/fast/multicol/dynamic/float-becomes-spanner.html |
diff --git a/LayoutTests/fast/multicol/dynamic/float-becomes-spanner.html b/LayoutTests/fast/multicol/dynamic/float-becomes-spanner.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4ee1698d3d9917b3a8783e8639912a6751d6a1ec |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/dynamic/float-becomes-spanner.html |
@@ -0,0 +1,10 @@ |
+<!DOCTYPE html> |
+<p>Turn a float into a column spanner.</p> |
+<p>Below there should be a blue <em>square</em>.</p> |
+<div style="-webkit-columns:3; column-fill:auto; width:100px; height:100px;"> |
+ <div id="spanner" style="float:left; width:100%; height:100px; -webkit-column-span:all; background:blue;"></div> |
+</div> |
+<script> |
+ document.body.offsetTop; |
+ document.getElementById("spanner").style.cssFloat = "none"; |
+</script> |