OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <link href="resources/flexbox.css" rel="stylesheet"> |
| 3 <style> |
| 4 .flexbox { |
| 5 background-color: #aaa; |
| 6 } |
| 7 |
| 8 .flexitem { |
| 9 background-color:red; |
| 10 -webkit-aspect-ratio: 1 / 2; |
| 11 } |
| 12 </style> |
| 13 <script src="../../resources/check-layout.js"></script> |
| 14 <body onload="checkLayout('.flexbox');"> |
| 15 <p>Test for crbug.com/249112: In Flexbox, allow intrinsic aspect ratios to infor
m the main-size calculation</p> |
| 16 <div class="flexbox"> |
| 17 <div class="flexitem" style="height:100px" data-expected-width="50" data-expec
ted-height="100"></div> |
| 18 </div> |
| 19 |
| 20 <div class="flexbox" style="height:100px"> |
| 21 <div class="flexitem" style="height:50%" data-expected-width="25" data-expecte
d-height="50"></div> |
| 22 </div> |
| 23 |
| 24 <div class="flexbox"> |
| 25 <img src="../images/resources/green-100x50.png" style="height:100px" data-expe
cted-width="200" data-expected-height="100"> |
| 26 </div> |
| 27 |
| 28 <div class="flexbox"> |
| 29 <img class="flexitem" src="../images/resources/green-100x50.png" style="height
:100px" data-expected-width="50" data-expected-height="100"> |
| 30 </div> |
| 31 |
| 32 <div class="flexbox" style="height:80px"> |
| 33 <img src="../images/resources/green-100x50.png" style="height:50%" data-expect
ed-width="80" data-expected-height="40"> |
| 34 </div> |
| 35 |
| 36 <div class="flexbox" style="height:40px"> |
| 37 <img src="../images/resources/green-100x50.png" data-expected-width="80" dat
a-expected-height="40"> |
| 38 </div> |
OLD | NEW |