summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/309550-1.html
blob: a161193d32e61f147e5741b5dd704dc7a4bf2b62 (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
<!doctype html>
<html>
<head>
<style type="text/css">
fieldset {
 margin: 0; padding: 0;
 border: none;
}
#float {
 float: left;
 width: 10em; height: 5em;
 background-color: green;
}
#clear {
 clear: left;
}
#sibling {
 width: 5em; height: 5em;
 background-color: blue;
}
</style>
</head>
<body>
<fieldset>
 <div id="float"></div>
 <div id="clear"></div>
 <div id="sibling"></div>
</fieldset>
</body>
</html>