Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / relpos-flex-item-with-percent-height-abspos-child.html
blobf1605b45597694c0a3887e36eb993f69972d2bf6
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 id="abspos" data-expected-height="200" style="position:absolute; left:0; top:0; width:200px; height:100%; background:lime;"></div>
7 </div>
8 <div style="height:200px;"></div>
9 </div>
10 <p id="result"></p>
11 <script>
12 checkLayout('#abspos', document.getElementById("result"));
13 </script>