Bug 1261785 - Part 4: fix the click offset in waitForContextMenu. r=jdescottes

This commit is contained in:
Jarda Snajdr 2016-04-19 04:03:00 +02:00
Родитель 97eb7d4c93
Коммит e1bdab8fe7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -381,7 +381,7 @@ function waitForContextMenu(popup, button, onShown, onHidden) {
info("wait for the context menu to open");
button.scrollIntoView();
let eventDetails = {type: "contextmenu", button: 2};
EventUtils.synthesizeMouse(button, 2, 2, eventDetails,
EventUtils.synthesizeMouse(button, 5, 2, eventDetails,
button.ownerDocument.defaultView);
return deferred.promise;
}