Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t0804-c5508-ipadn-b-03-b-a.html
blob17f8300ccf6458e4808c6c24675e81735ba5192f
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: padding-bottom</title>
5 <script src="../resources/ahem.js"></script>
6 <style type="text/css">
7 td { padding: 0; border: solid black; }
8 p { margin: 0; }
9 .test { font: 12px/1 Ahem; width: 5em; }
10 .zero {padding-bottom: 0; background-color: orange; color: blue;}
11 .one {padding-bottom: 0.125in; background-color: yellow; color: aqua;}
12 .two {padding-bottom: 12px; background-color: lime; color: fuchsia;}
13 .three {padding-bottom: 1em; background-color: blue; color: orange;}
14 .four {padding-bottom: 20%; background-color: aqua; color: yellow;}
15 .five {padding-bottom: -20px; background-color: fuchsia; color: lime;}
17 .control { width: 60px; background: red; }
18 .control .blue { border-bottom: solid blue 12px; }
19 .control .yellow { border-bottom: solid yellow 12px; }
20 .control .aqua { border-bottom: solid aqua 12px; }
21 .control .lime { border-bottom: solid lime 12px; }
22 .control .fuchsia { border-bottom: solid fuchsia 12px; }
23 .control .orange { border-bottom: solid orange 12px; }
24 </style>
25 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#padding-properties" title="8.4 Padding properties: 'padding-top', 'padding-right', 'padding-bottom', 'padding-left', and 'padding'">
26 </head>
27 <body>
28 <p>The next two columns should be identical.</p>
29 <table>
30 <tr>
31 <td>
32 <div class="test">
33 <p class="zero"> xxxxx </p>
34 <p class="one"> xxxxx </p>
35 <p class="two"> xxxxx </p>
36 <p class="three"> xxxxx </p>
37 <p class="four"> xxxxx </p>
38 <p class="five"> xxxxx </p>
39 </div>
40 </td>
41 <td class="control">
42 <div class="blue"></div>
43 <div class="aqua"></div>
44 <div class="yellow"></div>
45 <div class="fuchsia"></div>
46 <div class="lime"></div>
47 <div class="orange"></div>
48 <div class="blue"></div>
49 <div class="yellow"></div>
50 <div class="aqua"></div>
51 <div class="lime"></div>
52 </td>
53 </tr>
54 </table>
55 </body>
56 </html>