summaryrefslogtreecommitdiff
path: root/tests/thead.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2014-04-30 13:05:54 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2014-04-30 13:05:54 -0400
commit0254362f5b743d4c5abc02d3e375387e5ef1394a (patch)
tree159ee8bab67c30caf6c7ccd03fdd72a45d81eeb2 /tests/thead.ur
parentf67def4c6cfad7015ffe194a578fec417154cddb (diff)
<thead>, <tbody>, <tfoot>
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 00000000..a9774348
--- /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>