haikuwebkit/LayoutTests/tables/mozilla/bugs/bug3454.html

29 lines
495 B
HTML

<html><head>
<style type="text/css">
TABLE { margin: 1em; width: auto; }
</style>
</head>
<body>
<table border class="two">
<tr>
<th>Header One</th>
<th>Header Two</th>
<th>Header Three</th>
</tr>
<tr>
<td>
This table uses the separated borders model.
</td>
<td>
This means that elements within the cell have border-spacing of 1em.
</td>
<td>
The borders on the header cells,
on all sides, should be medium solid purple.
</td>
</tr>
</table>
</body></html>