Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / flexbox / nested-orthogonal-flexbox-relayout-expected.html
blob124ecf843c848a71918559c0b853032184a5e5b1
1 <!DOCTYPE html>
2 <style>
3 #column {
4 display: flex;
5 flex-direction: column;
6 border: 5px solid yellow;
7 width: 200px;
10 #row {
11 display: flex;
12 flex-direction: row;
13 border: 5px solid blue;
16 .item {
17 border: 5px solid green;
19 </style>
20 <body>
21 <div id="column">
22 <div id="row">
23 <div class="item">This text should not overflow its box</div>
24 </div>
25 </div>