Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / relpos-flex-item-with-percent-height-abspos-descendant.html
blob725de7229db31cfe09b444fbad473fdbfbf32329
1 <!DOCTYPE html>
2 <script src="../../resources/check-layout.js"></script>
3 <p>There should be no red this page.</p>
4 <div style="display:-webkit-box; width:200px; background:red;">
5 <div style="position:relative;">
6 <div>
7 <div id="abspos" data-expected-height="200" style="position:absolute; left:0; top:0; width:200px; height:100%; background:lime;"></div>
8 </div>
9 </div>
10 <div style="height:200px;"></div>
11 </div>
12 <p id="result"></p>
13 <script>
14 checkLayout('#abspos', document.getElementById("result"));
15 </script>