Bug 1644487 - Fix tab argument of menu API when in a message display window. r=mkmelin

This commit is contained in:
Geoff Lankow 2020-06-22 13:28:49 +03:00
Родитель 4ea07b3d27
Коммит 13c521fcb8
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -103,11 +103,12 @@ nsContextMenu.prototype = {
let menuObject = PageMenuParent.maybeBuild(this.target);
this.hasPageMenu = PageMenuParent.addToPopup(menuObject, null, aPopup);
// The rest of this block sends menu information to WebExtensions.
let subject = {
menu: aPopup,
tab: document.getElementById("tabmail")
? document.getElementById("tabmail").currentTabInfo
: undefined,
: window,
isContentSelected: this.isContentSelected,
isTextSelected: this.isTextSelected,
onTextInput: this.onTextInput,