This commit is contained in:
Dão Gottwald 2011-07-20 12:33:19 +02:00
Родитель bf1900c141
Коммит ce475c1daf
2 изменённых файлов: 8 добавлений и 5 удалений

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

@ -212,6 +212,7 @@ _BROWSER_FILES = \
browser_clearplugindata_noage.html \
browser_popupUI.js \
browser_sanitizeDialog.js \
browser_save_video.js \
bug564387.html \
bug564387_video1.ogv \
bug564387_video1.ogv^headers^ \

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

@ -20,12 +20,14 @@ function test() {
return;
gBrowser.removeEventListener("pageshow", pageShown);
document.addEventListener("popupshown", contextMenuOpened);
executeSoon(function () {
document.addEventListener("popupshown", contextMenuOpened);
var video1 = gBrowser.contentDocument.getElementById("video1");
EventUtils.synthesizeMouseAtCenter(video1,
{ type: "contextmenu", button: 2 },
gBrowser.contentWindow);
var video1 = gBrowser.contentDocument.getElementById("video1");
EventUtils.synthesizeMouseAtCenter(video1,
{ type: "contextmenu", button: 2 },
gBrowser.contentWindow);
});
});
function contextMenuOpened(event) {