Bug 347507, ignore negative rowspan and columnspan in MathML. r=rbs, sr=roc.

This commit is contained in:
jruderman%hmc.edu 2006-08-08 08:44:03 +00:00
Родитель a661b02369
Коммит 60b4491dec
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;