Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: Test for baseline alignment of table cells</title>
5 <link rel="author" title="L. David Baron" href="http://dbaron.org/" />
6 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
7 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#height-layout" />
8 <meta name="flags" content="" />
9 <style type="text/css">
11 td { vertical-align: baseline; }
13 </style>
14 </head>
15 <body>
17 <table>
18 <tr>
19 <td style="padding-top: 0; height: 80px;"><div style="padding-top: 40px">data</div></td>
20 <td style="padding-top: 12px; height: 120px;"><div style="padding-top: 3px">data</div></td>
21 <td style="padding-top: 40px; height: 160px;"><div style="padding-top: 0">data</div></td>
22 </tr>
23 </table>
25 </body>
26 </html>