summaryrefslogtreecommitdiffstats
path: root/layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html')
-rw-r--r--layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html b/layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html
new file mode 100644
index 000000000..586b51db7
--- /dev/null
+++ b/layout/reftests/flexbox/pagination/flexbox-multicol-vert-empty-2.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<!-- Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ -->
+<html>
+ <head>
+ <style>
+ .flexContainer {
+ display: flex;
+ flex-direction: column;
+ border: 2px dotted black;
+ height: 298px;
+ }
+ .multicol {
+ height: 100px;
+ width: 200px;
+ -moz-column-width: 20px;
+ -moz-column-fill: auto;
+ border: 4px solid orange;
+ }
+ </style>
+ </head>
+ <body>
+ <div class="multicol">
+ <div class="flexContainer">
+ </div>
+ </div>
+ </body>
+</html>