Update focus and hover state correctly when an _ancestor_ of the current focus

or hover content is removed from the DOM.  Bug 293914, r+sr=roc, a=asa


git-svn-id: svn://10.0.0.236/trunk@173578 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu 2005-05-19 16:18:32 +00:00
parent 6bc795d0bd
commit 9f18035c83

View File

@ -4216,7 +4216,8 @@ nsEventStateManager::GetFocusedFrame(nsIFrame** aFrame)
NS_IMETHODIMP
nsEventStateManager::ContentRemoved(nsIContent* aContent)
{
if (aContent == mCurrentFocus) {
if (mCurrentFocus &&
nsContentUtils::ContentIsDescendantOf(mCurrentFocus, aContent)) {
// Note that we don't use SetContentState() here because
// we don't want to fire a blur. Blurs should only be fired
// in response to clicks or tabbing.
@ -4224,7 +4225,8 @@ nsEventStateManager::ContentRemoved(nsIContent* aContent)
SetFocusedContent(nsnull);
}
if (aContent == mHoverContent) {
if (mHoverContent &&
nsContentUtils::ContentIsDescendantOf(mHoverContent, aContent)) {
// Since hover is hierarchical, set the current hover to the
// content's parent node.
mHoverContent = aContent->GetParent();