Leave tables alone

This commit is contained in:
M66B 2021-05-30 21:25:12 +02:00
parent a682f5a9e5
commit c40f3efda7
1 changed files with 1 additions and 2 deletions

View File

@ -682,8 +682,7 @@ public class HtmlHelper {
if (element.parent() != null && !display_hidden) {
Float s = getFontSize(value, 1.0f);
if (s != null && s == 0) {
if (!"table".equals(element.tagName()) ||
!"fixed".equals(kv.get("table-layout"))) {
if (!"table".equals(element.tagName())) {
Log.i("Removing no height/width " + element.tagName());
element.remove();
}