You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2023/01/04 05:18:41 UTC

[Issue 123330] Background of first table row spread to all cells in particular .html

https://bz.apache.org/ooo/show_bug.cgi?id=123330

damjan@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |damjan@apache.org
             Latest|---                         |4.2.0-dev
    Confirmation in|                            |

--- Comment #3 from damjan@apache.org ---
(In reply to hanya from comment #2)
> Created attachment 82510 [details]
> Example file contains a table in a row of another table
> 
> The file indicated in the reporter's desciption contains table in table.
> When I load the file, the first TH makes the cell and it contains hole
> following 
> tables that should be placed in the following rows.
> 
> The attached file contains small table in table. "th" element is not the
> problem 
> but the same problem happen with tr element.
> When I replaced the second table (placed in the table) with some string, 
> the problem did not happen.

Still a problem in the latest Git.

These workarounds, brilliantly noted by pawo509 on bug 38961 comment 11, get
the table to show properly in your sample document too:

---quote---
To make it work under Oo 3.x put the nested table in the <div>:

<td>
<div><table><tr><td>nested table</td></tr></table></div>
</td>

or just put something between <td> and nested <table> tags, for example:

<td>&nbsp;
<table><tr><td>nested table</td></tr></table>
</td>

If You put something AFTER the nested table it still does not work.

Anyway those are just workarounds, permanent solution for that issue is needed.
Attached You will find HTML files where this problem can be observed.
---quote---

-- 
You are receiving this mail because:
You are on the CC list for the issue.
You are the assignee for the issue.