зеркало из https://github.com/mozilla/pjs.git
Bug 398143 - Dragging scrollbar with mouse while autocomplete input has focus triggers autocomplete, r=mano, a=mconnor
This commit is contained in:
Родитель
5d37cf3fbc
Коммит
160d46eb8d
|
@ -791,6 +791,12 @@ nsFormFillController::MouseDown(nsIDOMEvent* aMouseEvent)
|
|||
if (!mouseEvent)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
nsCOMPtr<nsIDOMEventTarget> target;
|
||||
aMouseEvent->GetTarget(getter_AddRefs(target));
|
||||
nsCOMPtr<nsIDOMHTMLInputElement> targetInput = do_QueryInterface(target);
|
||||
if (!targetInput)
|
||||
return NS_OK;
|
||||
|
||||
PRUint16 button;
|
||||
mouseEvent->GetButton(&button);
|
||||
if (button != 0)
|
||||
|
|
Загрузка…
Ссылка в новой задаче