blob: 8ad455c87f51de87df6465a7b5c96d580fe2238c [file] [log] [blame]
<style>
.container {
width: 100px;
background-color: red;
}
.fill {
height: -webkit-fill-available;
}
.overflow-sibling {
width: 100px;
height: 100px;
background-color: green;
}
</style>
<!-- PASS if no red -->
<div class=container>
<div class=fill></div>
<div class=overflow-sibling></div>
</div>