mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
48 lines
1.6 KiB
HTML
48 lines
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><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>CSS Test: Table-Specific Border Style Behavior (collapsing border model/outset)</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-border-styles" />
|
|
<meta name="flags" content="" />
|
|
<meta name="assert" content="In the collapsing border model, the 'outset' border style looks the same as the 'groove' border style." />
|
|
<style type="text/css">
|
|
#table1
|
|
{
|
|
border-collapse: separate;
|
|
}
|
|
#table2
|
|
{
|
|
border: 30px outset orange;
|
|
border-collapse: collapse;
|
|
}
|
|
td
|
|
{
|
|
height: 5em;
|
|
width: 5em;
|
|
}
|
|
#table1 td
|
|
{
|
|
border: 30px groove orange;
|
|
}
|
|
#table2 td
|
|
{
|
|
border: 30px outset orange;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the two boxes below have identical borders that look as if they are carved into the canvas.</p>
|
|
<table id="table1">
|
|
<tr>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
<div> </div>
|
|
<table id="table2">
|
|
<tr>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |