forked from mirrors/gecko-dev
20 lines
506 B
JavaScript
20 lines
506 B
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
Services.ww.registerNotification(function (aSubject, aTopic, aData) {
|
|
if (aTopic == "domwindowopened") {
|
|
Services.ww.unregisterNotification(arguments.callee);
|
|
|
|
ok(true, "duplicateTabIn opened a new window");
|
|
|
|
whenDelayedStartupFinished(aSubject, function () {
|
|
executeSoon(function () {
|
|
aSubject.close();
|
|
finish();
|
|
});
|
|
}, false);
|
|
}
|
|
});
|
|
|
|
duplicateTabIn(gBrowser.selectedTab, "window");
|
|
}
|