summaryrefslogtreecommitdiff
path: root/tests/thead.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/thead.ur')
-rw-r--r--tests/thead.ur16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/thead.ur b/tests/thead.ur
new file mode 100644
index 0000000..a977434
--- /dev/null
+++ b/tests/thead.ur
@@ -0,0 +1,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>