summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-bordercollapse/bug1421887.html
blob: e77b974e783aa5dd5f0bd755c605854c9c128589 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<title>Bug 1421887 reftest</title>
<style type="text/css">
table
{
        border-collapse : collapse;
}
td
{
        padding : 5px;
        background-color : #F7F7F8;
        border-left : dashed 1px;
        border-right : dashed 1px;
        border-bottom : solid 1px;
        border-top : solid 1px;
        text-align : left;
}
</style>
</head>

<body>
<table>
<thead>
        <tr>
                <th>test</th>
                <th>test</th>
        </tr>
</thead>
<tbody>
        <tr>
                <td>test</td>

                <td rowspan="2">test</td>
        </tr>
        <tr><td>test</td></tr>

        <tr>

                <td>test</td>
                <td rowspan="2"></td>
        </tr>
        <tr><td>test</td></tr>

        <tr>
                <td>test</td>
                <td rowspan="2">test</td>
        </tr>
        <tr><td>test</td></tr>
</tbody>
</table>
</body>
</html>