Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html><head>
<title>CSS Test reference</title>
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck">
<style type="text/css">
.block {
position: absolute;
top: 70px;
width: 60px;
height: 120px;
}
.green {
background-color: green;
}
.blue {
background-color: blue;
}
#rect-1 {
left: 20px;
}
#rect-2 {
left: 90px;
}
#rect-3 {
left: 190px;
}
#rect-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="rect-1" class="green block"></div>
<div id="rect-2" class="green block"></div>
<div id="rect-3" class="blue block"></div>
<div id="rect-4" class="blue block"></div>
</body></html>