fixing a bug in getframeforpoint for nested row groups

This commit is contained in:
hyatt%netscape.com 1999-06-15 02:27:17 +00:00
parent 053016f7c4
commit 141b8814b7
2 changed files with 8 additions and 2 deletions

View File

@ -367,7 +367,10 @@ nsTableRowGroupFrame::GetFrameForPoint(const nsPoint& aPoint, nsIFrame** aFrame)
}
}
else if (NS_STYLE_DISPLAY_TABLE_ROW_GROUP == childDisplay->mDisplay) {
return kid->GetFrameForPoint(aPoint, aFrame);
if (kidRect.Contains(aPoint)) {
tmp.MoveTo(aPoint.x - kidRect.x, aPoint.y - kidRect.y);
return kid->GetFrameForPoint(tmp, aFrame);
}
}
kid->GetNextSibling(&kid);

View File

@ -367,7 +367,10 @@ nsTableRowGroupFrame::GetFrameForPoint(const nsPoint& aPoint, nsIFrame** aFrame)
}
}
else if (NS_STYLE_DISPLAY_TABLE_ROW_GROUP == childDisplay->mDisplay) {
return kid->GetFrameForPoint(aPoint, aFrame);
if (kidRect.Contains(aPoint)) {
tmp.MoveTo(aPoint.x - kidRect.x, aPoint.y - kidRect.y);
return kid->GetFrameForPoint(tmp, aFrame);
}
}
kid->GetNextSibling(&kid);