Index: third_party/WebKit/LayoutTests/fragmentation/block-with-float-and-1-orphaned-line.html |
diff --git a/third_party/WebKit/LayoutTests/fragmentation/block-with-float-and-1-orphaned-line.html b/third_party/WebKit/LayoutTests/fragmentation/block-with-float-and-1-orphaned-line.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a2c75d8e214a48df6adfd04fea6dc483293d494e |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fragmentation/block-with-float-and-1-orphaned-line.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<script src="../resources/check-layout.js"></script> |
+<div id="multicol" style="position:relative; columns:2; column-gap:0; column-fill:auto; width:500px; height:100px; line-height:20px; orphans:1; widows:1; background:yellow;"> |
+ First column.<br> |
+ <div data-offset-y="20" data-expected-height="100"> |
+ <div style="float:left; width:100%; height:70px; background:cyan;"> |
+ This cyan block should all be in the first column. |
+ </div> |
+ Second column.<br> |
+ </div> |
+</div> |
+<script> |
+ checkLayout("#multicol"); |
+</script> |