163631 fixing regression caused by last checkin. just undoing to what was there allready. no need to check height on frames. this messed up table row group frames.

This commit is contained in:
mjudge%netscape.com 2002-08-20 22:42:26 +00:00
Родитель 3a8c4a13f6
Коммит 4f5986ffdc
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3056,7 +3056,7 @@ nsFrame::GetNextPrevLineFromeBlockFrame(nsIPresContext* aPresContext,
PRUint32 lineFlags;
result = it->GetLine(searchingLine, &firstFrame, &lineFrameCount,
rect, &lineFlags);
if (!lineFrameCount || !rect.height) //if no height not a valid line either.
if (!lineFrameCount)
continue;
if (NS_SUCCEEDED(result)){
lastFrame = firstFrame;

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

@ -3056,7 +3056,7 @@ nsFrame::GetNextPrevLineFromeBlockFrame(nsIPresContext* aPresContext,
PRUint32 lineFlags;
result = it->GetLine(searchingLine, &firstFrame, &lineFrameCount,
rect, &lineFlags);
if (!lineFrameCount || !rect.height) //if no height not a valid line either.
if (!lineFrameCount)
continue;
if (NS_SUCCEEDED(result)){
lastFrame = firstFrame;