summaryrefslogtreecommitdiff
path: root/tests/ref/html/multi-header-inside-table.html
diff options
context:
space:
mode:
authorPgBiel <9021226+PgBiel@users.noreply.github.com>2025-06-10 11:41:16 -0300
committerGitHub <noreply@github.com>2025-06-10 14:41:16 +0000
commit7c7b962b98a09c1baabdd03ff4ccad8f6d817b37 (patch)
treec44c9b82e3c7ec7bf8feb44cedeae9fa71a107cb /tests/ref/html/multi-header-inside-table.html
parenta18ca3481da17a4de1cc7f9890f0c61efb480655 (diff)
Table multiple headers and subheaders (#6168)
Diffstat (limited to 'tests/ref/html/multi-header-inside-table.html')
-rw-r--r--tests/ref/html/multi-header-inside-table.html69
1 files changed, 69 insertions, 0 deletions
diff --git a/tests/ref/html/multi-header-inside-table.html b/tests/ref/html/multi-header-inside-table.html
new file mode 100644
index 00000000..a4a61a69
--- /dev/null
+++ b/tests/ref/html/multi-header-inside-table.html
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ </head>
+ <body>
+ <table>
+ <thead>
+ <tr>
+ <th>First</th>
+ <th>Header</th>
+ </tr>
+ <tr>
+ <th>Second</th>
+ <th>Header</th>
+ </tr>
+ <tr>
+ <th>Level 2</th>
+ <th>Header</th>
+ </tr>
+ <tr>
+ <th>Level 3</th>
+ <th>Header</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Body</td>
+ <td>Cells</td>
+ </tr>
+ <tr>
+ <td>Yet</td>
+ <td>More</td>
+ </tr>
+ <tr>
+ <th>Level 2</th>
+ <th>Header Inside</th>
+ </tr>
+ <tr>
+ <th>Level 3</th>
+ <th></th>
+ </tr>
+ <tr>
+ <td>Even</td>
+ <td>More</td>
+ </tr>
+ <tr>
+ <td>Body</td>
+ <td>Cells</td>
+ </tr>
+ <tr>
+ <th>One Last Header</th>
+ <th>For Good Measure</th>
+ </tr>
+ </tbody>
+ <tfoot>
+ <tr>
+ <td>Footer</td>
+ <td>Row</td>
+ </tr>
+ <tr>
+ <td>Ending</td>
+ <td>Table</td>
+ </tr>
+ </tfoot>
+ </table>
+ </body>
+</html>