Bug 190735. nsIFrame deCOMtamination, r+rs=dbaron
git-svn-id: svn://10.0.0.236/trunk@145537 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -174,12 +174,11 @@ nsStackFrame::GetStackedFrameForPoint(nsIPresContext* aPresContext,
|
||||
{
|
||||
// look at all the children is reverse order. Use the stack to do
|
||||
// this.
|
||||
nsIFrame* next;
|
||||
nsresult rv;
|
||||
aChild->GetNextSibling(&next);
|
||||
if (next != nsnull) {
|
||||
nsIFrame* next = aChild->GetNextSibling();
|
||||
if (next) {
|
||||
rv = GetStackedFrameForPoint(aPresContext, next, aRect, aPoint, aFrame);
|
||||
if (NS_SUCCEEDED(rv) && *aFrame)
|
||||
if (NS_SUCCEEDED(rv) && *aFrame)
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user