Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / colspanMinWidth-vertical.html
blob4f81fe726017f343ab4f1cbb9996e4f3c6e23ee0
1 <html>
2 <body>
3 <table style="-webkit-writing-mode: vertical-rl;">
4 <tr>
5 <td id="A" height='1' style="background:blue"></td>
6 </tr>
7 <tr>
8 <td id="B" colspan='2' rowspan='2' style="background:green"></td>
9 </tr>
10 <tr>
11 <td id="C" rowspan='2' style="background:red"></td>
12 </tr>
13 <tr>
14 <td id="D" colspan='2' style="background:cyan">
15 <table>
16 <tr>
17 <td id="E" style="background:magenta"></td>
18 <td id="F" style="background:yellow">
19 <input type='text' />
20 </td>
21 </tr>
22 </table>
23 </td>
24 </tr>
25 </table>
26 </body>
27 </html>