Bug 1181176 - Pass along x and y position for context menus on Graphene. r=fabrice

This commit is contained in:
Brian R. Bondy 2015-07-10 20:30:05 -04:00
Родитель 261d106827
Коммит 8edf122c8c
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -868,6 +868,10 @@ BrowserElementChild.prototype = {
}
}
// Pass along the position where the context menu should be located
menuData.clientX = e.clientX;
menuData.clientY = e.clientY;
// The value returned by the contextmenu sync call is true if the embedder
// called preventDefault() on its contextmenu event.
//