blob: 1feec51569499f2c2642e0a4a726b9451f99517a [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>This test will assert if a parent table attempts to calculate collapsed borders
for a cell in a nested table that does not have collapsed borders.</title>
<style type="text/css">
#table1
{
border-collapse: collapse;
height: 2in;
width: 2in;
}
#table2
{
height: 2in;
width: 2in;
}
td
{
border: 5px solid black;
}
</style>
</head>
<body>
<table id="table1">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<table id="table2">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>