Index: third_party/WebKit/LayoutTests/fast/multicol/pushed-line-affected-by-float.html |
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/pushed-line-affected-by-float.html b/third_party/WebKit/LayoutTests/fast/multicol/pushed-line-affected-by-float.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fee7fda46c1d9b6d6804af03ae54b64e159abcfd |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/multicol/pushed-line-affected-by-float.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<style> |
+ #multicol { columns:2; width:100px; line-height:20px; background:black; } |
+ #float { float:right; width:30px; height:30px; background:blue; break-inside:avoid; } |
+</style> |
+<p>There should be a blue box in the top right corner of the black box.</p> |
+<div id="multicol"> |
+ x<br> |
+ <div id="float"></div> |
+ x<br> |
+ x<br> |
+</div> |