Additional patch for bug 369150, r+sr=bz

This commit is contained in:
Olli.Pettay@helsinki.fi 2007-04-10 12:08:21 -07:00
Родитель 95fe8fe23e
Коммит 1288e8f209
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1019,7 +1019,12 @@ nsHTMLFramesetFrame::Reflow(nsPresContext* aPresContext,
ourContent->GetColSpec(&cols, &colSpecs);
// If the number of cols or rows has changed, the frame for the frameset
// will be re-created.
NS_ENSURE_STATE(mNumRows == rows && mNumCols == cols);
if (mNumRows != rows || mNumCols != cols) {
aStatus = NS_FRAME_COMPLETE;
mDrag.UnSet();
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
return NS_OK;
}
if (!mDrag.mActive) {
CalculateRowCol(aPresContext, width, mNumCols, colSpecs, mColSizes);