summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/column-balancing-break-inside-avoid-2-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/pagination/column-balancing-break-inside-avoid-2-ref.html')
-rw-r--r--layout/reftests/pagination/column-balancing-break-inside-avoid-2-ref.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/pagination/column-balancing-break-inside-avoid-2-ref.html b/layout/reftests/pagination/column-balancing-break-inside-avoid-2-ref.html
new file mode 100644
index 0000000000..5ac8e38252
--- /dev/null
+++ b/layout/reftests/pagination/column-balancing-break-inside-avoid-2-ref.html
@@ -0,0 +1,31 @@
+<html>
+<head>
+ <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=685012">
+ <link rel="help" href="http://www.w3.org/TR/CSS21/page.html#propdef-page-break-inside">
+ <meta name="flags" content="paged">
+ <meta charset="utf-8">
+ <title>Balancing Overflow, page-break-inside:avoid</title>
+<style>
+#colset { width: 200px;
+ padding: 2px;
+ column-count: 3;
+ column-gap: 2px;
+ column-fill: auto; }
+#a { height: auto; background: lightblue;}
+#b { height: 50px; background: lightblue;}
+#c { height: 51px; background: orange;}
+</style>
+</head>
+<!-- Removing whitespace in body for simpler frame trees -->
+<body
+ ><div id="colset"
+ ><div
+ ><div id="a"></div
+ ><div id="b"
+ ><div id="c"></div
+ ><div id="d"></div
+ ></div
+ ></div
+ ></div
+></body>
+</html>