blob: 404adb2a62338725d6a91f0f49127df49418ae96 [file] [edit]
<style>
.content {
display: -webkit-box;
}
.float {
float: left;
background-color: green;
width: 100px;
height: 100px;
}
.flex_item {
width: 100px;
height: 100px;
}
</style>
PASS if the green box is visible.
<div class=content>
<div class=float></div>
<div class=flex_item></div>
</div>