Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug11945.html
blob12a191e256afee8c6245fb2920c0edf5532e26e3
1 <html>
2 <body bgcolor=#c0c0c0>
3 <table border=10 cellspacing=10>
4 <tr>
5 <td rowspan=2>cell1</td>
6 <td>cell2</td>
7 </tr>
8 <tr>
9 </tr>
10 </table>
12 <p>See the behaviour when there is one more row:</p>
14 <table border=10 cellspacing=10>
15 <tr>
16 <td rowspan=2>cell1</td>
17 <td>cell2</td>
18 </tr>
19 <tr>
20 </tr>
21 <tr>
22 <td>cell3</td><td>cell4</td>
23 </tr>
24 </table>
26 <p>Now move the rowspan to cell2 to have even more fun:</p>
28 <table border=10 cellspacing=10>
29 <tr>
30 <td>cell1</td>
31 <td rowspan=2>cell2</td>
32 </tr>
33 <tr>
34 </tr>
35 <tr>
36 <td>cell3</td><td>cell4</td>
37 </tr>
38 </table>
39 </body>
40 </html>