Index: LayoutTests/fast/multicol/newmulticol/breaks-2-columns-3-expected.html |
diff --git a/LayoutTests/fast/multicol/newmulticol/breaks-2-columns-3-expected.html b/LayoutTests/fast/multicol/newmulticol/breaks-2-columns-3-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6016a052477bc5c8aa814beae3cd4c904557619e |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/newmulticol/breaks-2-columns-3-expected.html |
@@ -0,0 +1,34 @@ |
+<!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> |
+ </div> |
+ <div class="gap"> </div> |
+ <div class="mc"> |
+ second column<br> |
+ second column<br> |
+ second column<br> |
+ second column<br> |
+ second column<br> |
+ second column<br> |
+ </div> |
+ <div class="gap"> </div> |
+ <div class="mc"> |
+ third column<br> |
+ third column<br> |
+ third column<br> |
+ third column<br> |
+ </div> |
+ </div> |
+ </body> |
+</html> |
+ |