the cursor should move at positions where the cellmap has holes, bug 193405 r=jkeiser sr/a=dbaron

This commit is contained in:
bernd.mielke%snafu.de 2003-02-17 06:17:09 +00:00
Родитель ee25933de6
Коммит 918c00dbae
2 изменённых файлов: 4 добавлений и 0 удалений

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

@ -2063,6 +2063,8 @@ nsTableRowGroupFrame::FindFrameAt(PRInt32 aLineNumber,
for (PRInt32 i = 0; i < colCount; i++)
{
cellData = cellMap->GetDataAt(aLineNumber, i);
if (!cellData)
continue; // we hit a cellmap hole
if (!cellData->IsOrig())
continue;
tempFrame = (nsIFrame*)cellData->GetCellFrame();

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

@ -2063,6 +2063,8 @@ nsTableRowGroupFrame::FindFrameAt(PRInt32 aLineNumber,
for (PRInt32 i = 0; i < colCount; i++)
{
cellData = cellMap->GetDataAt(aLineNumber, i);
if (!cellData)
continue; // we hit a cellmap hole
if (!cellData->IsOrig())
continue;
tempFrame = (nsIFrame*)cellData->GetCellFrame();