blob: a30747f37f88fc97ce6f2d040ac9e514ae6de7d2 [file] [log] [blame]
<!DOCTYPE html>
<link href="resources/flexbox.css" rel="stylesheet">
<script src="../../resources/js-test.js"></script>
<script src="../../resources/check-layout.js"></script>
<style>
.flexbox {
width: 10px;
height: 10px;
background-color: grey;
}
.item {
background-color: red;
margin: 5px;
}
.child {
height: 100px;
width: 100px;
background-color: green;
}
.width-20 {
width: 20px;
}
.flex-basis-20 {
flex-basis: 20px;
}
</style>
<body onload="checkLayout('.flexbox')">
<div class="flexbox" data-expected-width="10">
<div class="item" data-expected-width="100">
<div class="child" data-expected-width="100"></div>
</div>
</div>
<div class="flexbox column" data-expected-height="10">
<div class="item" data-expected-height="100">
<div class="child" data-expected-height="100"></div>
</div>
</div>
<div class="flexbox" data-expected-width="10">
<div class="item width-20" data-expected-width="20">
<div class="child" data-expected-width="100"></div>
</div>
</div>
<div class="flexbox" data-expected-width="10">
<div class="item flex-basis-20" data-expected-width="100">
<div class="child" data-expected-width="100"></div>
</div>
</div>
</body>