Bug 1901769 - Make browser_test_clipboard_contextmenu.js work with native macOS context menus. r=fix

This commit is contained in:
Emilio Cobos Álvarez 2024-08-05 17:24:48 +03:00
Родитель 71c181f755
Коммит d38b2da8c8
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -45,8 +45,8 @@ async function waitForPasteContextMenu() {
function promiseClickPasteButton() {
info("Wait for clicking paste contextmenu");
const pasteButton = document.getElementById(kPasteMenuItemId);
let promise = BrowserTestUtils.waitForEvent(pasteButton, "click");
EventUtils.synthesizeMouseAtCenter(pasteButton, {});
let promise = BrowserTestUtils.waitForEvent(pasteButton, "command");
document.getElementById(kPasteMenuPopupId).activateItem(pasteButton);
return promise;
}