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/border-collapse-rowspan-cell.html - WPT Dashboard Interop Dashboard
<!doctype HTML>
<title>CSS Test: collapsed borders of row-spanning cells should paint correctly.</title>
<link rel="author" title="Chris Harrelson" href="chrishtr@chromium.org">
<link rel="match" href="border-collapse-rowspan-cell-ref.html">
<style>
table {
border-collapse: collapse;
}
td {
border: 1px solid red;
position: relative;
}
</style>
<table>
<tr>
<td rowspan="2">
Needs border
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>