Index: LayoutTests/fast/multicol/newmulticol/break-after-expected.html |
diff --git a/LayoutTests/fast/multicol/newmulticol/break-after-expected.html b/LayoutTests/fast/multicol/newmulticol/break-after-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1f4fff80e2cc49e00ca55dfcc2f39339eee308f3 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/newmulticol/break-after-expected.html |
@@ -0,0 +1,29 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>auto-height multicol with break</title> |
+ <script> |
+ if (window.internals) |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ </script> |
+ <style> |
+ .mc > div { padding:0 0.5em; } |
+ </style> |
+ </head> |
+ <body style="min-width:40em;"> |
+ <div class="mc" style="-webkit-columns:3; -webkit-column-gap:1em; columns:3; column-gap:1em; orphans:1; widows:1; width:32em; background:olive;"> |
+ <div> |
+ first column<br> |
+ first column<br> |
+ first column<br> |
+ first column<br> |
+ second column<br> |
+ second column<br> |
+ second column<br> |
+ </div> |
+ <div style="-webkit-column-break-before:always; break-before:column;"> |
+ third column<br> |
+ </div> |
+ </div> |
+ </body> |
+</html> |