summaryrefslogtreecommitdiffstats
path: root/sc/qa/uitest/data/tdf74577.html
blob: 26ee541086d9749fddbe412e132e523f930d9e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
    <title>Table</title>
</head>
<body>

    <table border=1 width="90%">
            <tr>
                <td>Cell1</td>
                <td colspan="2">Cell2 + 3</td>
            </tr>
            <tr>
                <td>Cell1</td>
                <td>Cell2</td>
                <td>Cell3</td>
            </tr>
            <tr>
                <td colspan="2"> Cell1 + Cell2</td>
                <td>Cell3</td>
            </tr>
            <tr>
                <td colspan="3"> Cell1 + Cell2 + Cell3</td>
            </tr>
            <tr>
                <td rowspan="2">Cell1 + Cell2</td>
                <td colspan="2"> Cell2 + Cell3</td>
            </tr>
            <tr>
                <td>Cell2</td>
                <td>Cell3</td>
            </tr>
    </table>
</body>
</html>