Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / block-non-replaced-height-013.htm
blob2eada89b41681029df37f988a5c84eeef3e39c12
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: An absolutely positioned child elements' 'height' is ignored for block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#normal-block">
7 <meta name="flags" content="">
8 <meta name="assert" content="An absolutely positioned child element is not considered when sizing the 'height' of a block-level non-replaced element is in normal flow.">
9 <style type="text/css">
10 #div1
12 background: red;
14 div div
16 height: 1in;
17 position: absolute;
18 width: 1in;
20 </style>
21 </head>
22 <body>
23 <p>Test passes if there is no red visible on the page.</p>
24 <div id="div1">
25 <div></div>
26 </div>
27 </body>
28 </html>