mirror of
https://github.com/servo/servo.git
synced 2025-08-19 12:25:33 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
|
@ -0,0 +1,83 @@
|
|||
<!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 monolithic content
|
||||
flowing into first region of smaller width 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-028-ref.xht" rel="match" />
|
||||
<meta content="This test checks that monolithic content flows
|
||||
through a region with a smaller width than the multi-column named flow and the
|
||||
second region and that it overflows the first region visibly as a
|
||||
multi-column container before flowing into the second region." name="assert" />
|
||||
<style type="text/css">
|
||||
#named-flow-multicol {
|
||||
width: 130px;
|
||||
height: 120px;
|
||||
columns: 2;
|
||||
column-gap: 10px;
|
||||
flow-into: multicol;
|
||||
}
|
||||
.green, .blue {
|
||||
width: 60px;
|
||||
height: 240px;
|
||||
}
|
||||
.green {
|
||||
background-color: green;
|
||||
}
|
||||
.blue {
|
||||
background-color: blue;
|
||||
}
|
||||
#region-1, #region-2 {
|
||||
position: absolute;
|
||||
height: 120px;
|
||||
flow-from: multicol;
|
||||
}
|
||||
#region-1 {
|
||||
top: 70px;
|
||||
left: 20px;
|
||||
width: 60px;
|
||||
}
|
||||
#region-2 {
|
||||
top: 70px;
|
||||
left: 160px;
|
||||
width: 130px;
|
||||
}
|
||||
.failure {
|
||||
position: absolute;
|
||||
top: 70px;
|
||||
width: 60px;
|
||||
height: 120px;
|
||||
background-color: red;
|
||||
z-index: -10;
|
||||
}
|
||||
#block-1 {
|
||||
left: 20px;
|
||||
}
|
||||
#block-2 {
|
||||
left: 90px;
|
||||
}
|
||||
#block-3 {
|
||||
left: 190px;
|
||||
}
|
||||
#block-4 {
|
||||
left: 260px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>The test passes if there are two green vertical rectangles on the left of two blue vertical rectangles.
|
||||
There should be no red.</p>
|
||||
<div id="named-flow-multicol">
|
||||
<div class="green named-flow-block"></div>
|
||||
<div class="blue named-flow-block"></div>
|
||||
</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>
|
||||
<div id="block-4" class="failure"></div>
|
||||
|
||||
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue