chromium/third_party/blink/web_tests/external/wpt/html/rendering/non-replaced-elements/tables/table-row-group-height.html

<!doctype html>
<link rel="match" href="table-row-group-height-ref.html">
<table style="border: 1px solid red">
  <thead style="display: block" height="100">
    <tr>
      <td>
        thead text
      </td>
    </tr>
  </tr>
</table>

<table style="border: 1px solid red">
  <tbody style="display: block" height="100">
    <tr>
      <td>
        tbody text
      </td>
    </tr>
  </tr>
</table>

<table style="border: 1px solid red">
  <tfoot style="display: block" height="100">
    <tr>
      <td>
        tfoot text
      </td>
    </tr>
  </tr>
</table>