Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / bug4860-absolute-block-child-does-not-inherit-alignment.html
blob1d714d758871b34c8e386e47ba420d7e3a8cdd51
1 <html>
2 <head>
3 <style type="text/css">
4 body {text-align:center;}
5 body * {
6 width: 80%;
8 body > div {background: blue;}
9 body > div > div {background: red;}
10 </style>
11 </head>
12 <!--A block with a block display type does not inherit alignment from its parent.
13 The red block should be aligned to the left.-->
14 <body>
15 <div style="position:relative;padding-bottom:200px;">
16 <div style="height: 100%;position:absolute;">
17 </div>
18 </div>
19 </body>
20 </html>