Fix 36573, send text field change event through nsPresShell central dispatch method in order to correctly set target property. r:saari, sr:jst

This commit is contained in:
joki%netscape.com 2002-02-20 03:20:33 +00:00
Родитель c09c703eed
Коммит 75b4d0f520
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3261,7 +3261,7 @@ nsGfxTextControlFrame2::InternalContentChanged()
return NS_ERROR_FAILURE;
nsCOMPtr<nsIPresContext> context;
if (NS_SUCCEEDED(presShell->GetPresContext(getter_AddRefs(context))) && context)
return mContent->HandleDOMEvent(context, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
return presShell->HandleEventWithTarget(&event, nsnull, mContent, NS_EVENT_FLAG_INIT, &status);
return NS_ERROR_FAILURE;
}
@ -3291,7 +3291,7 @@ nsGfxTextControlFrame2::CallOnChange()
return NS_ERROR_FAILURE;
nsCOMPtr<nsIPresContext> context;
if (NS_SUCCEEDED(presShell->GetPresContext(getter_AddRefs(context))) && context)
return mContent->HandleDOMEvent(context, &event, nsnull, NS_EVENT_FLAG_INIT, &status);
return presShell->HandleEventWithTarget(&event, nsnull, mContent, NS_EVENT_FLAG_INIT, &status);
}
return NS_OK;
}