mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
36 lines
578 B
HTML
36 lines
578 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Testcase for bug 1161752</title>
|
|
<style>
|
|
div
|
|
{
|
|
height: 56px;
|
|
width: 100px;
|
|
vertical-align: top;
|
|
margin-bottom: 50px;
|
|
}
|
|
div div
|
|
{
|
|
height: 50px;
|
|
width: 100px;
|
|
background-color: green;
|
|
margin-left: 300px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Test passes if there are three filled green rectangles and <strong>no red</strong>.</p>
|
|
|
|
|
|
<div><div></div></div>
|
|
<div><div></div></div>
|
|
<div><div></div></div>
|
|
<div><div></div></div>
|
|
<div><div></div></div>
|
|
|
|
</body>
|
|
</html>
|