Index: LayoutTests/fast/block/float/trailing-float-with-columns.html |
diff --git a/LayoutTests/fast/block/float/trailing-float-with-columns.html b/LayoutTests/fast/block/float/trailing-float-with-columns.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b59a3f0f75ba7a409e5d956314d0e46f5deda363 |
--- /dev/null |
+++ b/LayoutTests/fast/block/float/trailing-float-with-columns.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<p>crbug.com/487775: PASS if no crash or assertion failure.</p> |
+<div> |
+ <div id="firstChild" style="display:inline-block; width:100px;"></div> |
+ <div style="display:inline-block; width:100%; height:100px;"></div> |
+ <div style="-webkit-columns:2; float:right;"> |
+ <div style="float:left; position:relative; width:100px; height:100px;"></div> |
+ <div style="-webkit-column-span:all;"></div> |
+ <div id="contentAfterSpanner"></div> |
+ </div> |
+</div> |
+<script> |
+ if (window.testRunner) |
+ testRunner.dumpAsText(); |
+ onload = function() { |
+ document.body.offsetTop; |
+ document.getElementById("contentAfterSpanner").style.display = "none"; |
+ document.getElementById("firstChild").style.width = "101px"; |
+ } |
+</script> |