diff options
author | Saulo Araujo <saulo2@gmail.com> | 2016-07-16 14:06:00 -0300 |
---|---|---|
committer | Saulo Araujo <saulo2@gmail.com> | 2016-07-16 14:06:00 -0300 |
commit | fb5324f8180b089c75f12d165869909db941878f (patch) | |
tree | 1b5c79fb689aded584fd06b8a7449e1f25c072e4 /tests | |
parent | 885358adcc03e0b4b2599c3d1072c0ac169ed894 (diff) |
Fix for "normalizeTable" nesting thead and tfoot in tbody
Diffstat (limited to 'tests')
-rw-r--r-- | tests/normalizeTable.ur | 50 | ||||
-rw-r--r-- | tests/normalizeTable.urp | 1 | ||||
-rw-r--r-- | tests/normalizeTable.urs | 1 |
3 files changed, 52 insertions, 0 deletions
diff --git a/tests/normalizeTable.ur b/tests/normalizeTable.ur new file mode 100644 index 00000000..be16d935 --- /dev/null +++ b/tests/normalizeTable.ur @@ -0,0 +1,50 @@ +fun main () = +visible <- source True; +return + <xml> + <body> + <section> + <h1>Static table</h1> + <table border=1> + <thead> + <tr> + <th>Column 0</th> + <th>Column 1</th> + </tr> + </thead> + <tbody> + <tr> + <td>A</td> + <td>B</td> + </tr> + </tbody> + </table> + </section> + + <section> + <h1>Dynamic table</h1> + <table border=1> + <thead> + <tr> + <th>Column 0</th> + <th>Column 1</th> + </tr> + </thead> + <tbody> + <dyn signal={ + visible <- signal visible; + return (if visible then + <xml> + <tr> + <td>A</td> + <td>B</td> + </tr> + </xml> + else + <xml></xml>) + }/> + </tbody> + </table> + </section> + </body> + </xml> diff --git a/tests/normalizeTable.urp b/tests/normalizeTable.urp new file mode 100644 index 00000000..e22cda3b --- /dev/null +++ b/tests/normalizeTable.urp @@ -0,0 +1 @@ +normalizeTable diff --git a/tests/normalizeTable.urs b/tests/normalizeTable.urs new file mode 100644 index 00000000..9e80cf40 --- /dev/null +++ b/tests/normalizeTable.urs @@ -0,0 +1 @@ +val main: unit -> transaction page |