mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
59 lines
1.8 KiB
HTML
59 lines
1.8 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Hidden empty cells are transparent down to table background</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layers">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="If 'empty-cells' is set to 'hide', empty cells are transparent all the way down to the table background.">
|
|
<style type="text/css">
|
|
table
|
|
{
|
|
background: orange;
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
}
|
|
colgroup, col, tbody, tr
|
|
{
|
|
background: blue;
|
|
}
|
|
td
|
|
{
|
|
height: 2em;
|
|
width: 2em;
|
|
}
|
|
#test
|
|
{
|
|
background: red;
|
|
empty-cells: hide;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is an orange square in the middle of the blue square below.</p>
|
|
<table>
|
|
<colgroup>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td id="test"></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |