Bug 387720, fix shift+tab not working, popup reworking uncovered this bug which manifested itself as a regression, r+sr=roc

This commit is contained in:
2007-07-12 06:54:42 -07:00
parent 8ba17d8f56
commit ff550192b3

View File

@@ -436,7 +436,7 @@ nsFrameIterator::GetLastChild(nsIFrame* aFrame)
result = nsPlaceholderFrame::GetRealFrameFor(result); result = nsPlaceholderFrame::GetRealFrameFor(result);
if (result && IsPopupFrame(result)) if (result && IsPopupFrame(result))
result = GetNextSibling(result); result = GetPrevSibling(result);
} }
return result; return result;
} }