Index: LayoutTests/fast/multicol/newmulticol/clipping-top-overflow-expected.html |
diff --git a/LayoutTests/fast/multicol/newmulticol/clipping-top-overflow-expected.html b/LayoutTests/fast/multicol/newmulticol/clipping-top-overflow-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a82b72cc4b259cb470bd10d0e6313cc560f089c3 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/newmulticol/clipping-top-overflow-expected.html |
@@ -0,0 +1,28 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>Column and multicol content top overflow clipping</title> |
+ <script> |
+ if (window.internals) |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ </script> |
+ <style> |
+ .mc { |
+ columns: 3; |
+ column-gap: 15px; |
+ column-fill: auto; |
+ -webkit-columns: 3; |
+ -webkit-column-gap: 15px; |
+ -webkit-column-fill: auto; |
+ width: 600px; |
+ height: 100px; |
+ } |
+ </style> |
+ </head> |
+ <body> |
+ <p>There should be a 100x100 blue square below.</p> |
+ <div class="mc" style="margin-left:50px; margin-top:20px;"> |
+ <div style="width:100px; height:100px; background:blue;"></div> |
+ </div> |
+ </body> |
+</html> |