blob: 3b87a6f02d807ad27e15d1dea52f46fe63e2d08f [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ LayoutFormattingContextEnabled=true LayoutFormattingContextIntegrationEnabled=false ] -->
<html>
<head>
<style>
div {
border: 1px solid green;
}
div > div {
border: 1px solid red;
}
</style>
</head>
<body>
<div style="position: absolute; height: 100px;">
<div style="height: 50px; width: 200px;"></div>
</div>
<div style="position: absolute; top: 150px; height: 100px; max-width: 100px;">
<div style="height: 50px; width: 200px;"></div>
</div>
<div style="position: absolute; top: 300px; height: 100px; min-width: 300px">
<div style="height: 50px; width: 200px;"></div>
</div>
</body>
</html>