зеркало из https://github.com/mozilla/pjs.git
Bug 347507, ignore negative rowspan and columnspan in MathML. r=rbs, sr=roc.
This commit is contained in:
Родитель
a661b02369
Коммит
60b4491dec
|
@ -596,7 +596,7 @@ nsMathMLmtdFrame::GetRowSpan()
|
|||
if (!value.IsEmpty()) {
|
||||
PRInt32 error;
|
||||
rowspan = value.ToInteger(&error);
|
||||
if (error)
|
||||
if (error || rowspan < 0)
|
||||
rowspan = 1;
|
||||
}
|
||||
return rowspan;
|
||||
|
@ -611,7 +611,7 @@ nsMathMLmtdFrame::GetColSpan()
|
|||
if (!value.IsEmpty()) {
|
||||
PRInt32 error;
|
||||
colspan = value.ToInteger(&error);
|
||||
if (error)
|
||||
if (error || colspan < 0)
|
||||
colspan = 1;
|
||||
}
|
||||
return colspan;
|
||||
|
|
Загрузка…
Ссылка в новой задаче