Index: LayoutTests/fast/multicol/break-in-scrollable-expected.html |
diff --git a/LayoutTests/fast/multicol/break-in-scrollable-expected.html b/LayoutTests/fast/multicol/break-in-scrollable-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b461aa2f1b36e44b08138bf4dfef7688a033b326 |
--- /dev/null |
+++ b/LayoutTests/fast/multicol/break-in-scrollable-expected.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>Forced break inside scrollable container</title> |
+ <script> |
+ if (window.internals) |
+ internals.settings.setRegionBasedColumnsEnabled(true); |
+ </script> |
+ </head> |
+ <body> |
+ <p>The word 'PASS' should be seen on the left below. The scrollbars shouldn't be scrollable.</p> |
+ <div style="-webkit-columns:2; columns:2; orphans:1; widows:1;"> |
+ <div style="overflow:scroll; height:10em;"> |
+ |
+ <div>PASS</div> |
+ </div> |
+ </div> |
+ </body> |
+</html> |