Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / vertical-align-baseline-rowspan-011.html
blob5cbb41fa1bfa67c559233f9dbf3e916f4522be64
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 td {
6 vertical-align:baseline;
7 border: 1px solid #f90;
9 img {
10 width: 100px;
11 height: 200px;
12 background-color: green;
14 </style>
15 </head>
16 <body>
17 <p> https://bugs.webkit.org/show_bug.cgi?id=106571: The baseline of the first row of cells should be aligned with the baseline of the bottom of the green box.</p>
18 <table>
19 <tbody>
20 <tr>
21 <td>XXX</td><td>XXX</td><td rowspan="2"><img src="resources/greenbox-100px.png"></td><td>XXX</td><td>XXX</td>
22 </tr>
23 </tbody>
24 </table>
25 </body>
26 </html>