gecko/layout/reftests/bugs/309550-1.html
Daniel.S 4c72dd2bbf Bug 249803 reftest, r=roc
--HG--
extra : rebase_source : 4bbabdbbed53b24f721d30a8cd52c79aeb03a188
2009-04-25 20:44:43 +12:00

31 lines
410 B
HTML

<!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>