Commented out assertion that is triggering in table regression tests: problem is covered by bug 71210, this just removes the assertion alert. r=karnaze

This commit is contained in:
attinasi%netscape.com 2001-03-28 20:06:15 +00:00
Родитель c572186d99
Коммит df5c565e88
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -2507,7 +2507,9 @@ void nsHTMLReflowState::AdjustComputedWidth(void)
default : break;
}
}
NS_ASSERTION(mComputedWidth>=0, "Negative Width Result - very bad");
// NOTE: the next assertion was firing in the table regression tests - why?
// need to look into this
// NS_ASSERTION(mComputedWidth>=0, "Negative Width Result - very bad");
// if it did go bozo, set to 0
if(mComputedWidth<0) mComputedWidth = 0;
}

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

@ -2507,7 +2507,9 @@ void nsHTMLReflowState::AdjustComputedWidth(void)
default : break;
}
}
NS_ASSERTION(mComputedWidth>=0, "Negative Width Result - very bad");
// NOTE: the next assertion was firing in the table regression tests - why?
// need to look into this
// NS_ASSERTION(mComputedWidth>=0, "Negative Width Result - very bad");
// if it did go bozo, set to 0
if(mComputedWidth<0) mComputedWidth = 0;
}