Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/tables/border-collapse-visibility-collapse-001.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Test: Table with collapsed borders and collapsed tracks</title>
<link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<style>
td { border: 50px solid green; padding: 0; }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<table style="border-collapse: collapse; background: red">
<col style="visibility: collapse"></col>
<tr style="visibility: collapse">
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>