summaryrefslogtreecommitdiff
path: root/tests/ref/html/basic-table.html
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-01-24 12:15:09 +0100
committerGitHub <noreply@github.com>2025-01-24 11:15:09 +0000
commit467968af0788a3059e1bed47f9daee846f5b3904 (patch)
tree2e3ba6e49cebcee28753cc2171907dba4bf36abf /tests/ref/html/basic-table.html
parentcd044825fcb1651781f1dbcafac4dec8b216e370 (diff)
Tweak HTML pretty printing (#5745)
Diffstat (limited to 'tests/ref/html/basic-table.html')
-rw-r--r--tests/ref/html/basic-table.html22
1 files changed, 16 insertions, 6 deletions
diff --git a/tests/ref/html/basic-table.html b/tests/ref/html/basic-table.html
index 6ba1864e..189a5b31 100644
--- a/tests/ref/html/basic-table.html
+++ b/tests/ref/html/basic-table.html
@@ -8,26 +8,36 @@
<table>
<thead>
<tr>
- <th>The</th><th>first</th><th>and</th>
+ <th>The</th>
+ <th>first</th>
+ <th>and</th>
</tr>
<tr>
- <th>the</th><th>second</th><th>row</th>
+ <th>the</th>
+ <th>second</th>
+ <th>row</th>
</tr>
</thead>
<tbody>
<tr>
- <td>Foo</td><td rowspan="2">Baz</td><td>Bar</td>
+ <td>Foo</td>
+ <td rowspan="2">Baz</td>
+ <td>Bar</td>
</tr>
<tr>
- <td>1</td><td>2</td>
+ <td>1</td>
+ <td>2</td>
</tr>
<tr>
- <td colspan="2">3</td><td>4</td>
+ <td colspan="2">3</td>
+ <td>4</td>
</tr>
</tbody>
<tfoot>
<tr>
- <td>The</td><td>last</td><td>row</td>
+ <td>The</td>
+ <td>last</td>
+ <td>row</td>
</tr>
</tfoot>
</table>