haikuwebkit/LayoutTests/fast/layoutformattingcontext/fit-content-width-simple.html

18 lines
376 B
HTML

<!DOCTYPE html><!-- webkit-test-runner [ LayoutFormattingContextEnabled=true LayoutFormattingContextIntegrationEnabled=false ] -->
<style>
.container {
width: fit-content;
background: red;
}
.content {
display: inline-block;
width: 100px;
height: 100px;
background: green;
vertical-align: top;
}
</style>
<div class=container>
<div class=content></div>
</div>