servo/tests/wpt/css-tests/css-multicol-1_dev/xhtml1/regions-multicol-017.xht

93 lines
No EOL
3.2 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 Test: Multiple named flows, text content flowing into multiple
regions in a multi-column container</title>
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck" />
<!-- Reviewed on Github on 09-26-2013: https://github.com/w3c/csswg-test/pull/89 -->
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan" />
<link href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" rel="help" />
<link href="http://www.w3.org/TR/css3-regions/#flow-from" rel="help" />
<link href="http://www.w3.org/TR/css3-multicol/#columns" rel="help" />
<link href="reference/regions-multicol-017-ref.xht" rel="match" />
<meta content="This test checks multiple named flows with text
content flow into multiple regions in the multi-column
container." name="assert" />
<meta content="ahem" name="flags" />
<style type="text/css">
#multicol-container {
position: absolute;
top: 50px;
left: 20px;
width: 200px;
height: 200px;
border: 2px solid black;
columns: 4;
column-gap: 0;
}
.named-flow {
font-family: Ahem;
font-size: 25px;
line-height: 1em;
}
.region {
height: 50px;
}
.black {
color: black;
}
.gray {
color: gray;
}
.region.black {
flow-from: multicol-1;
}
.named-flow.black {
flow-into: multicol-1;
}
.region.gray{
flow-from: multicol-2;
}
.named-flow.gray {
flow-into: multicol-2;
}
#failure {
position: absolute;
top: 50px;
left: 20px;
background-color: red;
width: 204px;
height: 204px;
z-index: -1;
}
</style>
</head>
<body>
<p>The test passes if there is a 4x4 black and gray checkerboard and no red.</p>
<div class="named-flow black">
XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX
</div>
<div class="named-flow gray">
XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX
</div>
<div id="multicol-container">
<div class="region black"></div>
<div class="region gray"></div>
<div class="region black"></div>
<div class="region gray"></div>
<div class="region gray"></div>
<div class="region black"></div>
<div class="region gray"></div>
<div class="region black"></div>
<div class="region black"></div>
<div class="region gray"></div>
<div class="region black"></div>
<div class="region gray"></div>
<div class="region gray"></div>
<div class="region black"></div>
<div class="region gray"></div>
<div class="region black"></div>
</div>
<div id="failure"></div>
</body></html>