Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / table / 038-vertical.html
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.
4
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>