1
0
Fork 0
firefox/layout/reftests/table-background/table-col-overlapping.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
373 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
td {
width: 20px;
height: 20px;
}
table {
border-collapse:separate;
border-spacing: 0px;
}
</style>
</head>
<body>
<table>
<col style="background: green"></col>
<col style="background: blue"></col>
<tr>
<td></td>
<td rowspan=2></td>
<tr>
<td colspan=2></td>
</tr>
</table>
</body>
</html>