diff options
| author | PgBiel <9021226+PgBiel@users.noreply.github.com> | 2025-06-10 11:41:16 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-10 14:41:16 +0000 |
| commit | 7c7b962b98a09c1baabdd03ff4ccad8f6d817b37 (patch) | |
| tree | c44c9b82e3c7ec7bf8feb44cedeae9fa71a107cb /tests/ref/html | |
| parent | a18ca3481da17a4de1cc7f9890f0c61efb480655 (diff) | |
Table multiple headers and subheaders (#6168)
Diffstat (limited to 'tests/ref/html')
| -rw-r--r-- | tests/ref/html/multi-header-inside-table.html | 69 | ||||
| -rw-r--r-- | tests/ref/html/multi-header-table.html | 49 |
2 files changed, 118 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> diff --git a/tests/ref/html/multi-header-table.html b/tests/ref/html/multi-header-table.html new file mode 100644 index 00000000..8a34ac17 --- /dev/null +++ b/tests/ref/html/multi-header-table.html @@ -0,0 +1,49 @@ +<!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> + </tbody> + <tfoot> + <tr> + <td>Footer</td> + <td>Row</td> + </tr> + <tr> + <td>Ending</td> + <td>Table</td> + </tr> + </tfoot> + </table> + </body> +</html> |
