blob: 9be15e9b19fc1c0918ffa757ec3ace480fd3eed5 [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;
}
#after {
width: 150px;
background-color: blue;
color: white;
}
</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 at the very top of the 2nd region.</p>
<div class="region">
<div id="mono" class="flow">MONOLITHIC</div>
</div>
<div class="region">
<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>