mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 914434. Pass a function to a method that expects one instead of passing undefined. r=ehsan
This commit is contained in:
parent
63d5f03f78
commit
713b90ea1a
@ -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);
|
||||
})
|
||||
);
|
||||
});
|
||||
})
|
||||
);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user