mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
63 lines
No EOL
2 KiB
HTML
63 lines
No EOL
2 KiB
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test: One named flow multi-column container, monolithic content
|
|
flowing into an autosized region, overflowing column</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-003-ref.htm" rel="match">
|
|
<meta content="This test checks that text content flows
|
|
through an autosized region from the multi-column
|
|
named flow and that it overflows visibly into a
|
|
third column." name="assert">
|
|
<style type="text/css">
|
|
#named-flow-multicol {
|
|
width: 230px;
|
|
height: 200px;
|
|
columns: 2;
|
|
column-gap: 30px;
|
|
flow-into: multicol;
|
|
}
|
|
#named-flow-block {
|
|
background-color: green;
|
|
width: 100px;
|
|
height: 600px;
|
|
}
|
|
#region {
|
|
position: absolute;
|
|
top: 70px;
|
|
left: 20px;
|
|
flow-from: multicol;
|
|
}
|
|
.failure {
|
|
position: absolute;
|
|
top: 70px;
|
|
left: 20px;
|
|
background-color: red;
|
|
width: 100px;
|
|
height: 200px;
|
|
z-index: -1;
|
|
}
|
|
#block-1 {
|
|
left: 20px;
|
|
}
|
|
#block-2 {
|
|
left: 150px;
|
|
}
|
|
#block-3 {
|
|
left: 280px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if there are three vertical green rectangles and no red.</p>
|
|
<div id="named-flow-multicol">
|
|
<div id="named-flow-block"></div>
|
|
</div>
|
|
<div id="region"></div>
|
|
<div id="block-1" class="failure"></div>
|
|
<div id="block-2" class="failure"></div>
|
|
<div id="block-3" class="failure"></div>
|
|
|
|
|
|
</body></html> |