summaryrefslogtreecommitdiff
path: root/tests/thead.ur
blob: a9774348d021b7ede35c1d998dff048ea83c407f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fun main () : transaction page = return <xml><body>
  <table>
    <thead>
      <tr> <th>A</th> <th>B</th> </tr>
    </thead>

    <tbody>
      <tr> <td>1</td> <td>2</td> </tr>
      <tr> <td>3</td> <td>4</td> </tr>
    </tbody>

    <tfoot>
      <tr> <th>C</th> <th>D</th> </tr>
    </tfoot>
  </table>
</body></xml>