diff options
| author | PgBiel <9021226+PgBiel@users.noreply.github.com> | 2025-02-23 08:26:14 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-23 11:26:14 +0000 |
| commit | 240f238eee4d6dfce7e3c4cabb9315ad052ca230 (patch) | |
| tree | 231771ef399964f28b267b2b0832bad274e0f5c9 /tests/ref/html/col-gutter-table.html | |
| parent | d199546f9fe92b2d380dc337298fdca3e6fca8c8 (diff) | |
Fix HTML export of table with gutter (#5920)
Diffstat (limited to 'tests/ref/html/col-gutter-table.html')
| -rw-r--r-- | tests/ref/html/col-gutter-table.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ref/html/col-gutter-table.html b/tests/ref/html/col-gutter-table.html new file mode 100644 index 00000000..54170f53 --- /dev/null +++ b/tests/ref/html/col-gutter-table.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + </head> + <body> + <table> + <tr> + <td>a</td> + <td>b</td> + <td>c</td> + </tr> + <tr> + <td>d</td> + <td>e</td> + <td>f</td> + </tr> + <tr> + <td>g</td> + <td>h</td> + <td>i</td> + </tr> + </table> + </body> +</html> |
