Files
servo/tests/wpt/css-tests/css-flexbox-1_dev/xhtml1print/autoheight-regions-in-fixed-sized-flexbox-005.xht

61 lines
1.9 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>CSS Regions: Auto-height regions in fixed sized flexboxes with align-items and justify-content</title>
<link href="mailto:badea@adobe.com" rel="author" title="Catalin Badea" />
<link href="http://www.w3.org/TR/css3-regions/#rfcb-flow-fragment-height-resolution" rel="help" />
<link href="http://www.w3.org/TR/css-flexbox-1/#layout-algorithm" rel="help" />
<meta content="Test checks auto-height regions' layout when placed inside a flexbox with using
align-items and justify-content properties. The flowed content should be fragmented between the three regions
and the flex container should distribute the remaining horizontal space evenly around the regions." name="assert" />
<link href="reference/autoheight-regions-in-fixed-sized-flexbox-005-ref.xht" rel="match" />
<style>
.content {
font-family: Ahem;
font-size: 20px;
line-height: 1em;
color: green;
flow-into: flow;
}
.flex {
display: flex;
align-items: center;
justify-content: space-around;
height: 100px;
width: 420px;
}
.region {
flow-from: flow;
}
.break {
/* Current (Jul 2013) standard way of region breaking */
break-after: region;
/* Old, non-standard but implemented way of region breaking */
region-break-after: always;
}
.red {
background-color: red;
}
</style>
</head>
<body>
<ul>
<li>Test passes if you see three horizontal green stripes.</li>
<li>You shouldn't see any red.</li>
</ul>
<div class="content">
<div class="break">XXXX</div>
<div class="break">XXXX</div>
<div class="break">XXXX</div>
</div>
<div class="flex">
<div class="region"></div>
<div class="region"></div>
<div class="region"><p class="red">&#xA0;</p></div>
</div>
</body></html>