Merge integration refs/builds/qtci/dev/1617826149

This commit is contained in:
Qt CI Bot 2021-04-07 22:23:53 +00:00
commit e1cfbc10de

View File

@ -1670,7 +1670,7 @@ void QTextHtmlParser::applyAttributes(const QStringList &attributes)
node->tableCellRowSpan = qMax(1, node->tableCellRowSpan);
} else if (key == QLatin1String("colspan")) {
if (setIntAttribute(&node->tableCellColSpan, value))
node->tableCellColSpan = qMax(1, node->tableCellColSpan);
node->tableCellColSpan = qBound(1, node->tableCellColSpan, 20480);
}
break;
case Html_table: