Bug 914434. Pass a function to a method that expects one instead of passing undefined. r=ehsan

This commit is contained in:
Boris Zbarsky 2013-09-11 01:16:56 -04:00
Родитель 7c4cd424a0
Коммит 068c4e2928
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -69,14 +69,14 @@ function test() {
});
testOnWindow({}, function(win) {
testPopupBlockerMenuItem(false, win,
testPopupBlockerMenuItem(false, win, function() {
testOnWindow({private: true}, function(win) {
testPopupBlockerMenuItem(true, win,
testPopupBlockerMenuItem(true, win, function() {
testOnWindow({}, function(win) {
testPopupBlockerMenuItem(false, win, finishTest);
})
);
});
})
);
});
});
}