Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / vertical-align-baseline-rowspan-008-expected.html
blobc91ff02b0cfa27617984e419152b4e5f9ccae4d6
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Reference Result</title>
5 <link rel="author" title="WebKit" href="http://www.webkit.org/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#height-layout">
7 <style type="text/css">
8 td
10 height: 66px;
12 #first
14 vertical-align: baseline;
16 #second
18 vertical-align: middle;
20 #small
22 font-family: Ahem;
23 font-size: small;
25 #large
27 font-family: Ahem;
28 font-size: large;
30 </style>
31 </head>
32 <body>
33 <p>Test passes if the bottom of the first two black boxes is aligned.</p>
34 <table>
35 <tr>
36 <td id="first">
37 <div id="large">Text</div>
38 </td>
39 <td id="first">
40 <div id="small">Text</div>
41 </td>
42 <td id="second">
43 <div id="small">Text</div>
44 </td>
45 </tr>
46 </table>
47 </body>
48 </html>