| <!DOCTYPE html> |
| <html> |
| <link href="resources/flexbox.css" rel="stylesheet"> |
| <style> |
| body { |
| margin: 0; |
| } |
| .flexbox { |
| 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 src="../../resources/testharness.js"></script> |
| <script src="../../resources/testharnessreport.js"></script> |
| <script src="../../resources/check-layout-th.js"></script> |
| <body onload="checkLayout('.flexbox')"> |
| <div id=log></div> |
| <div class="flexbox" style="width: 600px"> |
| <div data-expected-height="100" class="flex-one" style="position: relative"> |
| <div data-offset-x="0" data-offset-y="50" class="absolute" style="bottom:0;"></div> |
| </div> |
| <div data-expected-height="100" class="flex-one" style="height: 100px"></div> |
| <div data-expected-height="100" class="flex-one" style="position: relative"> |
| <div data-offset-x="0" data-offset-y="50" class="absolute" style="bottom:0;"></div> |
| </div> |
| </div> |
| |
| <div style="writing-mode: vertical-rl"> |
| <div class="flexbox" style="height: 200px"> |
| <div data-expected-width="100" class="flex-one" style="position: relative"> |
| <div data-offset-x="0" data-offset-y="0" class="absolute" style="left:0;"></div> |
| </div> |
| <div data-expected-width="100" class="flex-one" style="width: 100px"></div> |
| <div data-expected-width="100" class="flex-one" style="position: relative"> |
| <div data-offset-x="0" data-offset-y="0" class="absolute" style="left:0;"></div> |
| </div> |
| </div> |
| </div> |
| |
| <div style="writing-mode: vertical-lr"> |
| <div class="flexbox" style="height: 200px"> |
| <div data-expected-width="100" class="flex-one" style="position: relative"> |
| <div data-offset-x="50" data-offset-y="0" class="absolute" style="right:0;"></div> |
| </div> |
| <div data-expected-width="100" class="flex-one" style="width: 100px"></div> |
| <div data-expected-width="100" class="flex-one" style="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 column" style="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> |