Index: third_party/WebKit/LayoutTests/fast/multicol/first-line-in-block-below-next-column-top.html |
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/first-line-in-block-below-next-column-top.html b/third_party/WebKit/LayoutTests/fast/multicol/first-line-in-block-below-next-column-top.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1602e09f9caf8e4d7f52d017ac489e7e2594a8a2 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/multicol/first-line-in-block-below-next-column-top.html |
@@ -0,0 +1,11 @@ |
+<!DOCTYPE html> |
+<script src="../../resources/check-layout.js"></script> |
+<p>When its first is on the other side of a column boundary, test that we push the entire block to the next column.</p> |
+<p>There should be a blue square below.</p> |
+<div id="multicol" style="position:relative; -webkit-columns:2; -webkit-column-gap:0; column-fill:auto; width:160px; height:80px; line-height:40px;"> |
+ <div style="height:60px;"></div> |
+ <div data-offset-x="80" data-offset-y="0" style="padding-top:40px; background:blue;"><br></div> |
+</div> |
+<script> |
+ checkLayout("#multicol"); |
+</script> |