summaryrefslogtreecommitdiff
path: root/tests/select.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-10-16 16:15:17 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-10-16 16:15:17 -0400
commit0a66597b3498f5863620c3ca5e2713e45eed47f8 (patch)
tree3d989c71c000d7324852e4d03d417d29e91b3f0c /tests/select.ur
parent22236f78bf5acb81d9c404ab71be9aa3d9e3bf26 (diff)
Indenting SELECT sub-clauses properly
Diffstat (limited to 'tests/select.ur')
-rw-r--r--tests/select.ur20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/select.ur b/tests/select.ur
index d97e6a55..ff3908e9 100644
--- a/tests/select.ur
+++ b/tests/select.ur
@@ -1,13 +1,13 @@
-val handler = fn x => <html><body>
+val handler = fn x => <xml><body>
You entered: {cdata x.A}
-</body></html>
+</body></xml>
-val main = fn () => <html><body>
- <lform>
- <lselect{#A}>
- <loption value="A">A</loption>
- <loption value="B">B</loption>
- </lselect>
+val main = fn () => <xml><body>
+ <form>
+ <select{#A}>
+ <option value="A">A</option>
+ <option value="B">B</option>
+ </select>
<submit action={handler}/>
- </lform>
-</body></html>
+ </form>
+</body></xml>