blob: c6ffce33fbd06b1ee48a6e61b5f4a1588e3a02fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!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>
|