You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When working with code generated by Microsoft Outlook I found a case where DOMDocument based parser has no problem with specific code, but HTML5 parser does.
Sorry, I wasn't clear. The t2 table is the same as in HTML5 output. The difference in the browser is that the outer table is not broken, i.e. the second row is where it should be.
So, the issue here is not the content of the inner table, but that it has impact on the outer table.
When working with code generated by Microsoft Outlook I found a case where DOMDocument based parser has no problem with specific code, but HTML5 parser does.
The minimal test case input is this:
Note the
<tr>
element as a child of another<tr>
. This causes HTML5 parser to output:Which obviously is invalid and causes the parent table to be "closed" before it should, leaving the next (here: last)
tr
element outside of the table.Reference: roundcube/roundcubemail#7356
The text was updated successfully, but these errors were encountered: