dbaron%dbaron.org cfd52fa2ab Add testcases for 153429.
git-svn-id: svn://10.0.0.236/trunk@168717 18797224-902f-48f8-a5cc-f745e15eee43
2005-02-02 20:29:28 +00:00

38 lines
823 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Testcase, correctness bug fixed by patch to bug 153429</title>
<style type="text/css">
div {
border: medium solid purple;
padding: 0.25em;
margin: 1px;
}
#contain {
width: 400px;
}
#one {
margin-bottom: 100px;
}
#two {
float: left;
width: 370px;
height: 200px;
}
</style>
</head>
<body>
<div id="contain">
<div id="one">This <code>div</code> (1) has a 100 px bottom margin.</div>
<div id="two">This <code>div</code> (2) is floating left and is 200px tall.</div>
This is text that should end up just below <code>div</code> (2) since it
can't fit next to it. There should not be a large gap above it.
</div>