Index: LayoutTests/fast/multicol/newmulticol/clipping-expected.html |
diff --git a/LayoutTests/fast/multicol/newmulticol/clipping-expected.html b/LayoutTests/fast/multicol/newmulticol/clipping-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..27e7e66fb4862225c74bf1861fbc3e9b46f6e010 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/newmulticol/clipping-expected.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>Column clipping</title> |
+ <script> |
+ if (window.internals) |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ </script> |
+ <style> |
+ body { |
+ width: 450px; |
+ color: black; |
+ background: white; |
+ } |
+ .mc { |
+ columns: 3; |
+ column-gap: 15px; |
+ column-fill: auto; |
+ -webkit-columns: 3; |
+ -webkit-column-gap: 15px; |
+ -webkit-column-fill: auto; |
+ height: 100px; |
+ box-sizing:border-box; |
+ border:10px solid green; |
+ background:white; |
+ } |
+ </style> |
+ </head> |
+ <body> |
+ <p>There should be a rectangle with a solid 10px thick green border below, and no red.</p> |
+ <div class="mc"></div> |
+ </body> |
+</html> |