aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extensions/extra/tables_and_attr_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extensions/extra/tables_and_attr_list.html')
-rw-r--r--tests/extensions/extra/tables_and_attr_list.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/extensions/extra/tables_and_attr_list.html b/tests/extensions/extra/tables_and_attr_list.html
new file mode 100644
index 0000000..7d2451b
--- /dev/null
+++ b/tests/extensions/extra/tables_and_attr_list.html
@@ -0,0 +1,18 @@
+<table>
+<thead>
+<tr>
+<th>First Header</th>
+<th>Second Header</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td class="foo bar" title="Some title!">Content Cell</td>
+<td>Content Cell</td>
+</tr>
+<tr>
+<td>Content Cell</td>
+<td class="foo bar" title="Some title!">Content Cell</td>
+</tr>
+</tbody>
+</table>