blob: dcb9db2f18ca26c6b377abe440e6b5db9174cc8a [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
body {
margin: 0;
}
.flexbox {
display: -webkit-flex;
background-color: #aaa;
position: relative;
}
.flexbox div {
border: 0;
}
.flexbox > :nth-child(1) {
background-color: blue;
}
.flexbox > :nth-child(2) {
background-color: green;
}
.flexbox > :nth-child(3) {
background-color: red;
}
.absolute {
position: absolute;
width: 50px;
height: 50px;
background-color: yellow !important;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.flexbox')">
<div class="flexbox" style="width: 600px">
<div data-expected-height="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="50" class="absolute" style="bottom:0;"></div>
</div>
<div data-expected-height="100" style="-webkit-flex: 1 0 0; height: 100px"></div>
<div data-expected-height="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="50" class="absolute" style="bottom:0;"></div>
</div>
</div>
<div style="-webkit-writing-mode: horizontal-bt">
<div class="flexbox" style="width: 600px">
<div data-expected-height="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="0" class="absolute" style="top:0;"></div>
</div>
<div data-expected-height="100" style="-webkit-flex: 1 0 0; height: 100px"></div>
<div data-expected-height="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="50" class="absolute" style="bottom:0;"></div>
</div>
</div>
</div>
<div style="-webkit-writing-mode: vertical-rl">
<div class="flexbox" style="height: 200px">
<div data-expected-width="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="0" class="absolute" style="left:0;"></div>
</div>
<div data-expected-width="100" style="-webkit-flex: 1 0 0; width: 100px"></div>
<div data-expected-width="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="0" class="absolute" style="left:0;"></div>
</div>
</div>
</div>
<div style="-webkit-writing-mode: vertical-lr">
<div class="flexbox" style="height: 200px">
<div data-expected-width="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="50" data-offset-y="0" class="absolute" style="right:0;"></div>
</div>
<div data-expected-width="100" style="-webkit-flex: 1 0 0; width: 100px"></div>
<div data-expected-width="100" style="-webkit-flex: 1 0 0; position: relative">
<div data-offset-x="0" data-offset-y="0" class="absolute" style="left:0;"></div>
</div>
</div>
</div>
<div class="flexbox" style="height: 50px; width: 600px;">
<div data-expected-height="50" style="background-color: yellow; width: 300px">
<div data-expected-height="60" style="height: 60px; width: 10px; background-color: orange"></div>
</div>
</div>
<div class="flexbox" style="-webkit-flex-direction: column; width: 100px;">
<div data-expected-width="100" data-expected-height="50" style="background-color: yellow;">
<div data-expected-width="200" style="height: 50px; width: 200px; background-color: orange"></div>
</div>
</div>
</html>