wpt / css / css-tables / collapsed-border-large-rowgroup-002.html

Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-tables/collapsed-border-large-rowgroup-002.html

<!DOCTYPE html>
<meta charset="UTF-8">
<title>border-collapse with rowspan past rowgroup size</title>
<link rel="help" href="https://drafts.csswg.org/css-tables/#border-collapse-property">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1990533">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=2039560">
<link rel="match" href="collapsed-border-large-rowgroup-002-ref.html">
<style>
  table {
    border-collapse: collapse;
    border: 8px solid cyan;
  }
  td, th {
    border: 1px solid black;
  }
</style>
<table>
  <thead>
    <tr>
      <th>A</th>
      <th rowspan=2></th>
      <th>B</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>C</td>
      <td></td>
      <td>D</td>
    </tr>
  </tbody>
</table>

/css/css-tables/collapsed-border-large-rowgroup-002-ref.html

<!DOCTYPE html>
<meta charset="UTF-8">
<title>border-collapse with rowspan past rowgroup size</title>
<style>
  table {
    border-collapse: collapse;
    border: 8px solid cyan;
  }
  td, th {
    border: 1px solid black;
  }
</style>
<table>
  <thead>
    <tr>
      <th>A</th>
      <th></th>
      <th>B</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>C</td>
      <td></td>
      <td>D</td>
    </tr>
  </tbody>
</table>