Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/crashtests/empty_cells_crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<style>
table {
empty-cells: hide;
border-collapse: collapse;
}
td {
padding:0;
}
</style>
<table>
<td></td>
<td colspan=2></td>
<td></td>
</table>
</div>