Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t0805-c5513-brdr-bw-00-b.html
blobe67ec2a5d21b48961573d1e41efe69ce507393ca
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: border-bottom-width</title>
5 <style type="text/css">
6 td { vertical-align: top;}
7 table { color: navy; }
8 .two {border-bottom-width: thick; border-style: solid;}
9 .three {border-bottom-width: medium; border-style: solid;}
10 .four {border-bottom-width: thin; border-style: solid;}
11 </style>
12 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-properties" title="8.5 Border properties">
13 </head>
14 <body>
15 <p>The three boxes below should have progressively thinner bottom borders.</p>
16 <table>
17 <tr>
18 <td>
19 <p class="two">
21 </p>
22 </td>
23 <td>
24 <p class="three">
26 </p>
27 </td>
28 <td>
29 <p class="four">
31 </p>
32 </td>
33 </tr>
34 </table>
35 </body>
36 </html>