comparison tests/thead.ur @ 2206:c1a62ce47083

Merge.
author Ziv Scully <ziv@mit.edu>
date Tue, 27 May 2014 21:38:01 -0400
parents d3a0f2b8af28
children
comparison
equal deleted inserted replaced
2205:cdea39473c78 2206:c1a62ce47083
1 fun main () : transaction page = return <xml><body>
2 <table>
3 <thead>
4 <tr> <th>A</th> <th>B</th> </tr>
5 </thead>
6
7 <tbody>
8 <tr> <td>1</td> <td>2</td> </tr>
9 <tr> <td>3</td> <td>4</td> </tr>
10 </tbody>
11
12 <tfoot>
13 <tr> <th>C</th> <th>D</th> </tr>
14 </tfoot>
15 </table>
16 </body></xml>