blob: 1a433f481efe03ba7210b57a4022f9397e7b21f0 [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ internal:LayoutFormattingContextEnabled=true internal: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>