border-collapse-rowspan-cell.html (550B)
1 <!doctype HTML> 2 <title>CSS Test: collapsed borders of row-spanning cells should paint correctly.</title> 3 <link rel="author" title="Chris Harrelson" href="chrishtr@chromium.org"> 4 <link rel="match" href="border-collapse-rowspan-cell-ref.html"> 5 <link rel="help" href="https://drafts.csswg.org/css-tables/#slot"> 6 <style> 7 table { 8 border-collapse: collapse; 9 } 10 11 td { 12 border: 1px solid red; 13 position: relative; 14 } 15 </style> 16 <table> 17 <tr> 18 <td rowspan="2"> 19 Needs border 20 </td> 21 </tr> 22 <tr> 23 <td> 24 </td> 25 </tr> 26 </table>