Mypal/layout/reftests/bugs/309550-1-ref.html
2019-03-11 13:26:37 +03:00

27 lines
362 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;
}
#sibling {
width: 5em; height: 10em;
background-color: blue;
}
</style>
</head>
<body>
<fieldset>
<div id="float"></div>
<div id="sibling"></div>
</fieldset>
</body>
</html>