blob: d5ddb5d30080d08cbdb4ce4496dda9f5a2494f19 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Too many lines affected by float</title>
<style>
.container {
margin: 0;
width: 10em;
font: 16px/1 Times;
}
.float {
float: left;
height: 54px;
width: 3em;
}
p {
margin: 0;
line-height: 1.2em;
}
</style>
</head>
<body>
<p> webkit.org/b/112744 : Only the first three lines below should be right-aligned. </p>
<div class="container">
<div class="float"></div>
<p>Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet.</p>
</div>
</body>
</html>