summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/tables/table-row-group-height.html
blob: b58311dd72364d7fe51eb4d454918fce33bdc83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!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>