Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t0803-c5505-mrgn-01-e-a.html
blob0fe62f2090a752340fca0d1ee2a1a88037d1030f
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: margin</title>
5 <script src="../resources/ahem.js"></script>
6 <style type="text/css">
7 div.test, div.control { margin: 1em; }
8 p.criteria { color: navy; }
9 p, ul, li { margin: 0; padding: 0; list-style: none; }
11 div.test { border: solid black; width: 10em; background-color: orange; font: 1em/1 Ahem; color: teal; }
12 ul.test, li.test { margin: 1em; }
13 li.test { background-color: aqua; }
14 ul.test { background-color: yellow; }
16 .control { border: solid; width: 10em; background: red; }
17 .control .orange { border: solid 1em orange; background: yellow; }
18 .control .teal { height: 1em; width: 1em; background: teal; }
19 .control .aqua { border: solid 1em yellow; background: aqua; }
21 </style>
22 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#margin-properties" title="8.3 Margin properties: 'margin-top', 'margin-right', 'margin-bottom', 'margin-left', and 'margin'">
23 </head>
24 <body>
25 <p class="criteria">The following two diagrams should look identical.</p>
26 <div class="test">
27 <ul class="test">
28 <li>-</li>
29 <li class="test">-</li>
30 <li>-</li>
31 </ul>
32 </div>
33 <div class="control">
34 <div class="orange">
35 <div class="teal"></div>
36 <div class="aqua"><div class="teal"></div></div>
37 <div class="teal"></div>
38 </div>
39 </div>
40 </body>
41 </html>