diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-10 18:28:53 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-10 18:28:53 +0200 |
commit | 63aaad529c9ae9358f22fd9563aeabc679f4defd (patch) | |
tree | 67adfffcb14250f083d86b568577a8a2eb7bdf9f /tests/web/xhtml/test.out | |
parent | 8e866579cb459c5104c532d5e41d562d45236ea5 (diff) |
Add support for generating XHTML5
Diffstat (limited to 'tests/web/xhtml/test.out')
-rw-r--r-- | tests/web/xhtml/test.out | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/web/xhtml/test.out b/tests/web/xhtml/test.out new file mode 100644 index 0000000..ffa6df6 --- /dev/null +++ b/tests/web/xhtml/test.out @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta charset="UTF-8"/> + <title>Example XHTML5 document</title> + </head> + <body> + <p>Here be <b>Dragons!</b><br/>and a newline</p> + <p id="123" class="cool">Text</p> + <p id="123" class="cool">Text</p> + <p id="123" class="cool">Text</p> + <p id="123" class="cool">Text</p> + <p>Text<br class="double"/></p> + </body> +</html> |