mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
52 lines
No EOL
1.6 KiB
HTML
52 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>CSS Test: There may be gaps between column groups in the separated borders model</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layout" />
|
|
<meta name="flags" content="may" />
|
|
<meta name="assert" content="In the separated borders model, there may be gaps between column groups." />
|
|
<style type="text/css">
|
|
table
|
|
{
|
|
background: blue;
|
|
border-collapse: separate;
|
|
border-spacing: 3px 0;
|
|
}
|
|
colgroup
|
|
{
|
|
background: black;
|
|
}
|
|
td
|
|
{
|
|
height: 2em;
|
|
width: 2em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the box below has blue vertical lines running through it (no horizontal lines).</p>
|
|
<table>
|
|
<colgroup>
|
|
<col />
|
|
<col />
|
|
<col />
|
|
</colgroup>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |