Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / absolute-child-with-percent-height-inside-relative-parent.html
blob03932323ea511b5624c62c8c584dafc503b7549d
1 <html>
2 <head>
3 <style type="text/css">
4 body {text-align:center; overflow: hidden;}
5 body * {
6 width: 80%;
7 display: inline-block;
9 body > div {background: blue;}
10 body > div > div {background: red;}
11 </style>
12 </head>
13 <body>
14 <div style="height:30px;position:relative;padding-bottom:200px;">
15 <div style="height: 100%;position:absolute;">
16 <img src="resources/show-shoes-vs-pie.png" style="height: 100%;">
17 </div>
18 </div>
19 </body>
20 </html>