Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / margin-collapse-top-margin-clearance-expected.html
blob0e360a602d75a3469866eb3e6487e869504c5fb5
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
4 <head>
6 <title>CSS Test: Margin collapsing with clearance - margins of a 'collapsed through' box with clearance do not collapse with parent block's bottom margin</title>
8 <style type="text/css">
10 #parent-lime
12 background-color: lime;
13 border-top: black solid 1px;
14 width: 50%;
15 height: 100px;
18 #float-left-blue
20 background-color: blue;
21 float: left;
22 height: 100px;
23 width: 100px;
26 </style>
28 </head>
30 <body>
32 <p>Test passes if the lime rectangle is the same height as the blue square.</p>
35 <div id="parent-lime">
36 <div id="float-left-blue"></div>
37 </div>
39 </body>
40 </html>