haikuwebkit/LayoutTests/fast/table/table-cell-border-doctype.html

21 lines
535 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
border: 1px solid blue;
width: 200px;
height: 100px;
}
</style>
</head>
<body>
<table>
<tr>
<td width="50%" style="border-collapse:collapse;border: 1px solid red;background-color: yellow;"><p></p></td>
<td width="50%" style="border-collapse:collapse; border: 1px solid red; "></td>
</tr>
</table>
</body>
</html>