OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <link href="resources/flexbox.css" rel="stylesheet"> |
| 4 <style> |
| 5 .flexbox { |
| 6 border: 5px solid green; |
| 7 position: relative; |
| 8 width: 50px; |
| 9 } |
| 10 |
| 11 .overflow { |
| 12 border: 1px solid red; |
| 13 overflow:auto; |
| 14 } |
| 15 |
| 16 .overflow > div { |
| 17 width:100px; |
| 18 height:20px; |
| 19 } |
| 20 </style> |
| 21 <script src="../../resources/check-layout.js"></script> |
| 22 <body onload="checkLayout('.flexbox')"> |
| 23 <div class="flexbox" data-expected-height="47"> |
| 24 <div class="overflow"><div></div></div> |
| 25 </div> |
| 26 |
| 27 <div class="flexbox row-reverse" data-expected-height="47"> |
| 28 <div class="overflow"><div></div></div> |
| 29 </div> |
| 30 </body> |
| 31 </html> |
OLD | NEW |