mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
80 lines
No EOL
2.6 KiB
HTML
80 lines
No EOL
2.6 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: One named flow multi-column container with text content
|
|
flowing into region of smaller height than the second region</title>
|
|
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck" />
|
|
<link href="http://www.w3.org/TR/css3-regions/#multi-column-regions" rel="help" />
|
|
<link href="http://www.w3.org/TR/css3-multicol/#columns" rel="help" />
|
|
<link href="reference/regions-multicol-024-ref.xht" rel="match" />
|
|
<meta content="This test checks that text content flows
|
|
through a region with a height smaller than the second region and
|
|
that it overflows the first region as a multi-column container
|
|
before flowing into the second region." name="assert" />
|
|
<meta content="ahem" name="flags" />
|
|
<style type="text/css">
|
|
#named-flow-multicol {
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
line-height: 1em;
|
|
width: 130px;
|
|
height: 120px;
|
|
columns: 2;
|
|
column-gap: 10px;
|
|
flow-into: multicol;
|
|
}
|
|
.green {
|
|
color: green;
|
|
}
|
|
.blue {
|
|
color: blue;
|
|
}
|
|
#region-1, #region-2 {
|
|
position: absolute;
|
|
width: 130px;
|
|
flow-from: multicol;
|
|
}
|
|
#region-1 {
|
|
top: 70px;
|
|
left: 20px;
|
|
height: 60px;
|
|
}
|
|
#region-2 {
|
|
top: 70px;
|
|
left: 190px;
|
|
height: 120px;
|
|
}
|
|
.failure {
|
|
position: absolute;
|
|
top: 70px;
|
|
background-color: red;
|
|
width: 60px;
|
|
height: 60px;
|
|
z-index: -10;
|
|
}
|
|
#block-1 {
|
|
left: 20px;
|
|
}
|
|
#block-2 {
|
|
left: 90px;
|
|
}
|
|
#block-3 {
|
|
left: 190px;
|
|
height: 120px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if there are two green side by side squares on the left of one blue vertical rectangle.
|
|
There should be no red.</p>
|
|
<div id="named-flow-multicol">
|
|
<span class="green">XXX XXX XXX XXX XXX XXX</span>
|
|
<span class="blue">XXX XXX XXX XXX XXX XXX</span>
|
|
</div>
|
|
<div id="region-1"></div>
|
|
<div id="region-2"></div>
|
|
<div id="block-1" class="failure"></div>
|
|
<div id="block-2" class="failure"></div>
|
|
<div id="block-3" class="failure"></div>
|
|
|
|
|
|
</body></html> |