RetroZilla/layout/html/tests/block/bugs/196919.html
2015-10-20 23:03:22 -04:00

34 lines
892 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US">
<head>
<title>Testcase, bug 196919</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">
#float-one, #float-two, #float-three {
border: medium solid blue;
padding: 0.5em;
margin: 0.5em;
height: 5em;
width: 20%;
}
#float-one { float: left; }
#float-two { float: left; clear: left; }
#float-three { float: right; }
</style>
</head>
<body>
<div id="float-one">Float one.</div>
<div id="float-two">Float two.</div>
<div> <!-- mLastFloaterY doesn't get copied down to this DIV -->
<div id="float-three">Float three, whose top should be even with float two.</div>
</div>
</body>
</html>