summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2015-07-02 13:02:37 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2015-07-02 13:02:37 -0400
commit5c750dcbde7818d043047c55e1248a68fac4214e (patch)
treebe0747d31b671b0ec30bb1edf48127dead74b4aa /tests
parentafc300a29b7e4cd868858ef5bcf9d0f9829f4b8a (diff)
Add HTML 'align' attribute
Diffstat (limited to 'tests')
-rw-r--r--tests/align.ur4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/align.ur b/tests/align.ur
new file mode 100644
index 00000000..7d6664da
--- /dev/null
+++ b/tests/align.ur
@@ -0,0 +1,4 @@
+fun main () : transaction page = return <xml><body>
+ <p align="left">Left</p>
+ <p align="right">Right</p>
+</body></xml>