Bug 865430 - Give dispatched mouse events from a11y an unkown input source. r=surkov

This commit is contained in:
Eitan Isaacson 2013-04-25 09:16:10 -07:00
Родитель 60ca5af6d1
Коммит 26dca3b0bb
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -160,6 +160,7 @@ nsCoreUtils::DispatchMouseEvent(uint32_t aEventType, int32_t aX, int32_t aY,
event.clickCount = 1;
event.button = nsMouseEvent::eLeftButton;
event.time = PR_IntervalNow();
event.inputSource = nsIDOMMouseEvent::MOZ_SOURCE_UNKNOWN;
nsEventStatus status = nsEventStatus_eIgnore;
aPresShell->HandleEventWithTarget(&event, aFrame, aContent, &status);