blob: 7699fec5018ce3a98bf9fc40db14f7fb9573ce47 [file] [log] [blame]
<!DOCTYPE html>
<html>
<link href="resources/flexbox.css" rel="stylesheet">
<style>
body {
margin: 0;
}
.flexbox {
background-color: #aaa;
position: relative;
}
.flexbox div {
border: 0;
}
.vertical-rl {
-webkit-writing-mode: vertical-rl;
}
.flexbox :nth-child(1) {
background-color: blue;
}
.flexbox :nth-child(2) {
background-color: green;
}
.flexbox :nth-child(3) {
background-color: red;
}
</style>
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.flexbox')">
<div class="flexbox">
<div data-expected-height="50" style="-webkit-flex: 1 0 0; max-height: 100px"></div>
<div data-expected-height="50" style="-webkit-flex: 1 0 0; height: 50px"></div>
<div data-expected-height="25" style="-webkit-flex: 1 0 0; max-height: 25px"></div>
</div>
<div class="flexbox column" style="width: 200px">
<div data-expected-width="150" style="-webkit-flex: 1 0 20px; max-width: 150px"></div>
<div data-expected-width="100" style="-webkit-flex: 1 0 20px; width: 100px"></div>
<div data-expected-width="200" style="-webkit-flex: 1 0 20px;"></div>
</div>
<div class="flexbox vertical-rl" style="height: 60px">
<div data-expected-width="100" style="-webkit-flex: 1 0 20px; max-width: 110px"></div>
<div data-expected-width="100" style="-webkit-flex: 1 0 20px; width: 100px"></div>
<div data-expected-width="50" style="-webkit-flex: 1 0 20px; max-width: 50px"></div>
</div>
<div class="flexbox column vertical-rl" style="height: 50px">
<div data-expected-height="50" style="-webkit-flex: 1 0 100px; max-height: 100px"></div>
<div data-expected-height="50" style="-webkit-flex: 1 0 100px; height: 50px"></div>
<div data-expected-height="25" style="-webkit-flex: 1 0 100px; max-height: 25px"></div>
</div>
</body>
</html>