Index: LayoutTests/fast/multicol/newmulticol/break-before-expected.html |
diff --git a/LayoutTests/fast/multicol/newmulticol/break-before-expected.html b/LayoutTests/fast/multicol/newmulticol/break-before-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..530e43caf92c37d50d38a26b16bdc458ec78654e |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/newmulticol/break-before-expected.html |
@@ -0,0 +1,30 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>auto-height multicol with break</title> |
+ <style> |
+ .mc { float:left; width:9em; padding:0 0.5em; } |
+ .gap { float:left; width:1em; } |
+ </style> |
+ </head> |
+ <body style="min-width:40em;"> |
+ <div style="float:left; background:olive;"> |
+ <div class="mc"> |
+ first column<br> |
+ first column<br> |
+ first column<br> |
+ first column<br> |
+ </div> |
+ <div class="gap"> </div> |
+ <div class="mc"> |
+ second column<br> |
+ second column<br> |
+ second column<br> |
+ </div> |
+ <div class="gap"> </div> |
+ <div class="mc"> |
+ third column<br> |
+ </div> |
+ </div> |
+ </body> |
+</html> |