Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <link href="resources/flexbox.css" rel="stylesheet"> | |
| 4 <style> | |
| 5 .flexbox { | |
| 6 width: 500px; | |
| 7 height:100px; | |
| 8 background: green; | |
| 9 } | |
| 10 | |
| 11 .flexbox > div { | |
| 12 flex: 1 0% 1; | |
| 13 width: 50px; | |
| 14 background: yellow; | |
| 15 } | |
| 16 </style> | |
| 17 <script src="../../resources/check-layout.js"></script> | |
| 18 <body onload="checkLayout('.flexbox')"> | |
| 19 <div class="flexbox"> | |
| 20 <div data-expected-width="50"></div> | |
| 21 <div data-expected-width="50"></div> | |
| 22 <div data-expected-width="50"></div> | |
| 23 </div> | |
| 24 </body> | |
| 25 </html> | |
| OLD | NEW |