diff options
Diffstat (limited to 'test/html/render/table-thead-tfoot-open-tag.html')
-rw-r--r-- | test/html/render/table-thead-tfoot-open-tag.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/test/html/render/table-thead-tfoot-open-tag.html b/test/html/render/table-thead-tfoot-open-tag.html new file mode 100644 index 00000000..0a71215f --- /dev/null +++ b/test/html/render/table-thead-tfoot-open-tag.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test thead, tbody and tfoot</title> + <style> + thead {color: green;} + tbody {color: blue;} + tfoot {color: red;} + + table, th, td { + border: 1px solid black; + } + </style> + </head> + <body> + <table> + <thead> + <tr> + <th>Month</th> + <th>Savings + <tbody> + <tr> + <td>January + <td>$100 + <tr> + <td>February + <td>$80 + <tfoot> + <tr> + <td>Sum + <td>$180 + </tfoot> + </table> + </body> +</html> |