blob: 56e5637eb02779a1199b447ba813d6094e9975c7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.region {
width: 200px;
height: 200px;
border: thin solid black;
float: left;
margin: 10px;
}
#mono {
width: 150px;
height: 300px;
overflow: scroll;
background-color: green;
color: white;
float: left;
}
#after {
width: 150px;
background-color: blue;
color: white;
clear: left;
}
</style>
</head>
<body>
<p><a href="https://bugs.webkit.org/show_bug.cgi?id=130499">Bug 130499 - [CSS Regions] Monolithic elements should not affect the layout of the content outside its region</a></p>
<p>The blue div should be positioned below the green float.</p>
<div class="region">
<div id="mono" class="flow">MONOLITHIC FLOAT</div>
<div id="after" class="flow">AFTER - One one one one one one one one one one one one one one one one one</div>
</div>
</body>
</html>