Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / flexbox / stretch-after-sibling-size-change.html
blob20cff19209611581c92dbeee22c38555b8daae2a
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link href="resources/flexbox.css" rel="stylesheet">
5 <script src="../../resources/check-layout.js"></script>
6 <script>
7 window.onload = function()
9 document.getElementById("a").style.height = "20px"
10 checkLayout(".flexbox");
12 </script>
13 </head>
14 <body>
15 <div data-expected-width="100" data-expected-height="20" class="flexbox" style="width: 100px">
16 <div id=a class="flex-one" data-expected-width="50" data-expected-height="20" style="background-color: blue; height: 30px;"></div>
17 <div id=b class="flex-one" data-expected-width="50" data-expected-height="20" style="background-color: green"></div>
18 </div>
19 </body>
20 </html>