Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / 038-vertical.html
blob2098b2e917710053b7d4d40a0f81ad20f8e1275b
1 <body style="overflow: hidden;">
2 The two rows below should look identical. In both, the spanning cells in columns 2-3 should consume as
3 much width as possible, while column 1 should be tiny.
5 <table border=2 height=100% style="-webkit-writing-mode: vertical-rl;">
6 <tr>
7 <td>1<td colspan=2>2-3
8 </tr>
9 <tr>
10 <td>1</td>
11 <td colspan=2 height=100%>2-3</td>
12 </tr>
13 </table>
14 </body>