summaryrefslogtreecommitdiffstats
path: root/layout/reftests/flexbox/pagination/flexbox-single-row-vertical-rl-1d.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/flexbox/pagination/flexbox-single-row-vertical-rl-1d.html')
-rw-r--r--layout/reftests/flexbox/pagination/flexbox-single-row-vertical-rl-1d.html114
1 files changed, 114 insertions, 0 deletions
diff --git a/layout/reftests/flexbox/pagination/flexbox-single-row-vertical-rl-1d.html b/layout/reftests/flexbox/pagination/flexbox-single-row-vertical-rl-1d.html
new file mode 100644
index 0000000000..b73bf25ea8
--- /dev/null
+++ b/layout/reftests/flexbox/pagination/flexbox-single-row-vertical-rl-1d.html
@@ -0,0 +1,114 @@
+<!DOCTYPE html>
+<!-- Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ -->
+<html>
+ <meta charset="utf-8">
+ <title>CSS Flexbox Test: Fragmentation of block-size:auto single-line row-reverse flex container with block-size:auto flex items</title>
+ <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
+ <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
+ <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
+ <link rel="match" href="flexbox-single-row-vertical-rl-1-ref.html">
+ <meta name="assert" content="This test verifies fragmentation of block-size:auto flex items in a block-size:auto single-line row-reverse flex container, with various combinations of margin/border/padding, alignments, and column-gap.">
+
+ <style>
+ html {
+ writing-mode: vertical-rl;
+ }
+ .multicol {
+ block-size: 50px;
+ inline-size: 320px;
+ column-count: 3;
+ column-fill: auto;
+ column-gap: 10px;
+ border: 5px solid orange;
+ margin-block-end: 5px; /* Just to separate each sub-testcase visually. */
+ }
+ .flexContainer {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: row-reverse;
+ background: gray;
+ /* border-width is 0 by default; some sub-testcases will increase it. */
+ border: 0 solid lightgray;
+ }
+ .border-padding {
+ border-block-width: 10px;
+ padding-block: 5px;
+ }
+
+ /* Note: flex items are in visual order as "CMYK": cyan, magenta, yellow, black. */
+ header, nav, article, footer {
+ flex-grow: 1;
+ }
+ footer {
+ background: cyan;
+ }
+ footer > div {
+ block-size: 100px;
+ }
+ article {
+ background: magenta;
+ align-self: flex-start;
+ }
+ article > div {
+ block-size: 25px;
+ }
+ nav {
+ background: yellow;
+ align-self: center;
+ }
+ nav > div {
+ block-size: 50px;
+ }
+ header {
+ background: black;
+ align-self: flex-end;
+ }
+ header > div {
+ block-size: 75px;
+ }
+ </style>
+
+ <body>
+ <!-- Basic one without any margin/border/padding. -->
+ <div class="multicol">
+ <div class="flexContainer">
+ <header><div></div></header><nav><div></div></nav>
+ <article><div></div></article><footer><div></div></footer>
+ </div>
+ </div>
+
+ <!-- Test a container with margin-block-start. -->
+ <div class="multicol">
+ <div class="flexContainer" style="margin-block-start: 25px">
+ <header><div></div></header><nav><div></div></nav>
+ <article><div></div></article><footer><div></div></footer>
+ </div>
+ </div>
+
+ <!-- Test a container not at the top of the column/page. -->
+ <div class="multicol">
+ <div style="block-size: 25px"></div>
+ <div class="flexContainer">
+ <header><div></div></header><nav><div></div></nav>
+ <article><div></div></article><footer><div></div></footer>
+ </div>
+ </div>
+
+ <!-- Test a container with border and padding. -->
+ <div class="multicol">
+ <div class="flexContainer border-padding">
+ <header><div></div></header><nav><div></div></nav>
+ <article><div></div></article><footer><div></div></footer>
+ </div>
+ </div>
+
+ <!-- Test a container with border, padding, and column-gap. -->
+ <div class="multicol">
+ <div class="flexContainer border-padding" style="column-gap: 4px">
+ <header><div></div></header><nav><div></div></nav>
+ <article><div></div></article><footer><div></div></footer>
+ </div>
+ </div>
+ </body>
+</html>