summaryrefslogtreecommitdiff
path: root/tests/ref/html/basic-table.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ref/html/basic-table.html')
-rw-r--r--tests/ref/html/basic-table.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/ref/html/basic-table.html b/tests/ref/html/basic-table.html
new file mode 100644
index 00000000..6ba1864e
--- /dev/null
+++ b/tests/ref/html/basic-table.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <table>
+ <thead>
+ <tr>
+ <th>The</th><th>first</th><th>and</th>
+ </tr>
+ <tr>
+ <th>the</th><th>second</th><th>row</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Foo</td><td rowspan="2">Baz</td><td>Bar</td>
+ </tr>
+ <tr>
+ <td>1</td><td>2</td>
+ </tr>
+ <tr>
+ <td colspan="2">3</td><td>4</td>
+ </tr>
+ </tbody>
+ <tfoot>
+ <tr>
+ <td>The</td><td>last</td><td>row</td>
+ </tr>
+ </tfoot>
+ </table>
+ </body>
+</html>