diff options
author | Adam Chlipala <adam@chlipala.net> | 2015-06-08 11:11:46 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2015-06-08 11:11:46 -0400 |
commit | 81d24bdd643e6ad7be78e69c5c0fca8c096c2c9a (patch) | |
tree | 53aabf9a2b0015c2c7f8ef2e7573b131341c0e1e /tests | |
parent | bc30b26207d28491b27ccc40aea7f89fd01c3571 (diff) |
Apply syntax sugar for 'class' attribute to <form> as well
Diffstat (limited to 'tests')
-rw-r--r-- | tests/classy_form.ur | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/classy_form.ur b/tests/classy_form.ur new file mode 100644 index 00000000..f9fafb6e --- /dev/null +++ b/tests/classy_form.ur @@ -0,0 +1,9 @@ +style form_inline + +val main : transaction page = return <xml> + <body> + <form class="form-inline"> + Problematic? + </form> + </body> +</xml> |