diff options
Diffstat (limited to 't/fmt/xhtml/table.html')
-rw-r--r-- | t/fmt/xhtml/table.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/t/fmt/xhtml/table.html b/t/fmt/xhtml/table.html new file mode 100644 index 0000000..ae4be2d --- /dev/null +++ b/t/fmt/xhtml/table.html @@ -0,0 +1,21 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html> + <head> + <title>Simple test table</title> + </head> + + <body> + <table id="ref1"> + <caption>The table caption</caption> + <colgroup> + <col id="group"/> <col id="code"/> <col id="params"/> <col id="description"/> + </colgroup> + <tbody> + <tr id="titlerow"> <th>Code </th><th>Parameters </th><th>Description </th></tr> + <tr><th>Group</th><td colspan="2">Group note</td></tr> + <tr><td>Term</td><td/><td>Description</td></tr> + </tbody> + </table> + </body> +</html> |