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
parent 6e83df59c7
commit 755e491e93
2 changed files with 6 additions and 2 deletions

View File

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