Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / vertical-align-baseline-rowspan-002.htm
blob12d7ef3a9ef7d70b23aa909e8d407a79f7e10e0a
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: Vertical-align set to 'baseline' with a spanning cell</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="author" title="WebKit" href="http://www.webkit.org/">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#height-layout">
8 <meta name="flags" content="">
9 <meta name="assert" content="A spanning cell with Vertical-align set to 'baseline' aligns the cell's content baseline (which is the bottom of the first line of text or in-flow content) with the baseline of the first of the rows it spans.">
10 <style type="text/css">
13 vertical-align: baseline;
15 #small
17 font-family: Ahem;
18 font-size: small;
20 #large
22 font-family: Ahem;
23 font-size: large;
25 </style>
26 </head>
27 <body>
28 <p>Test passes if the bottom of the two black boxes is aligned.</p>
29 <table>
30 <tr>
31 <td rowspan="3" colspan="1">
32 <div id="large">Text</div>
33 </td>
34 <td rowspan="2" colspan="1">
35 <div id="small">Text</div>
36 </td>
37 <td>
38 <div id="small">Text</div>
39 </td>
40 </tr>
41 <tr>
42 <td></td>
43 </tr>
44 <tr>
45 <td></td>
46 </tr>
47 </table>
48 </body>
49 </html>