diff options
Diffstat (limited to 'tests/ref/html/basic-table.html')
| -rw-r--r-- | tests/ref/html/basic-table.html | 22 |
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> |
