Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t0804-c5508-ipadn-b-03-b-a.html
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   <style type="text/css">
6    td { padding: 0; border: solid black; }
7    p { margin: 0; }
8    .test { font: 12px/1 Ahem; width: 5em; }
9    .zero {padding-bottom: 0; background-color: orange; color: blue;}
10    .one {padding-bottom: 0.125in; background-color: yellow; color: aqua;}
11    .two {padding-bottom: 12px; background-color: lime; color: fuchsia;}
12    .three {padding-bottom: 1em; background-color: blue; color: orange;}
13    .four {padding-bottom: 20%; background-color: aqua; color: yellow;}
14    .five {padding-bottom: -20px; background-color: fuchsia; color: lime;}
15
16    .control { width: 60px; background: red; }
17    .control .blue { border-bottom: solid blue 12px; }
18    .control .yellow { border-bottom: solid yellow 12px; }
19    .control .aqua { border-bottom: solid aqua 12px; }
20    .control .lime { border-bottom: solid lime 12px; }
21    .control .fuchsia { border-bottom: solid fuchsia 12px; }
22    .control .orange { border-bottom: solid orange 12px; }
23   </style>
24   <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'">
25  </head>
26  <body>
27   <p>The next two columns should be identical.</p>
28   <table>
29    <tr>
30     <td>
31      <div class="test">
32       <p class="zero"> xxxxx </p>
33       <p class="one"> xxxxx </p>
34       <p class="two"> xxxxx </p>
35       <p class="three"> xxxxx </p>
36       <p class="four"> xxxxx </p>
37       <p class="five"> xxxxx </p>
38      </div>
39     </td>
40     <td class="control">
41      <div class="blue"></div>
42      <div class="aqua"></div>
43      <div class="yellow"></div>
44      <div class="fuchsia"></div>
45      <div class="lime"></div>
46      <div class="orange"></div>
47      <div class="blue"></div>
48      <div class="yellow"></div>
49      <div class="aqua"></div>
50      <div class="lime"></div>
51     </td>
52    </tr>
53   </table>
54  </body>
55 </html>