blob: dd95cfa1b5f6ded825fb081e6bdf96acbbe6bb42 (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
table {
border-collapse: collapse;
border: 3px solid green;
}
td {
height: 100px;
width: 100px;
}
</style>
<head>
<body>
<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=101060">101060</a>: Fix the collapsing border code to handle mixed directionality at the row level</p>
<p>This test checks that a table with dir="ltr" and mixed directionality on the row works as expected.</p>
<p>The table below should have a 3px green outer border.</p>
<table>
<tbody>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</table>
</body>
</html>
|