1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<!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 and box-decoration-break:clone single-line row-reverse flex container with fixed block-size 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-3-ref.html">
<meta name="assert" content="This test verifies fragmentation of fixed block-size flex items in a block-size:auto single-line row-reverse flex container, with various combinations of margin/border/padding, alignments, column-gap, and box-decoration-break:clone.">
<style>
html {
writing-mode: vertical-rl;
}
.multicol {
block-size: 80px;
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: 0 solid white;
border-block-width: 15px;
box-decoration-break: clone;
}
/* Note: flex items are in visual order as "CMYK": cyan, magenta, yellow, black. */
header, nav, article, footer {
flex-grow: 1;
}
footer {
background: cyan;
block-size: 100px;
}
article {
background: magenta;
block-size: 25px;
align-self: flex-start;
}
nav {
background: yellow;
block-size: 50px;
align-self: center;
}
header {
background: black;
block-size: 75px;
align-self: flex-end;
}
</style>
<body>
<!-- Test a container with margin-block-start. -->
<div class="multicol">
<div class="flexContainer" style="margin-block-start: 25px">
<header></header><nav></nav><article></article><footer></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></header><nav></nav><article></article><footer></footer>
</div>
</div>
<!-- Test a container with column-gap. -->
<div class="multicol">
<div class="flexContainer" style="column-gap: 4px">
<header></header><nav></nav><article></article><footer></footer>
</div>
</div>
</body>
</html>
|