зеркало из https://github.com/mozilla/pjs.git
browser_514751.js cleanup
This commit is contained in:
Родитель
cab1803213
Коммит
864cb2dd07
|
@ -52,8 +52,6 @@ function test() {
|
||||||
|
|
||||||
let ss = Cc["@mozilla.org/browser/sessionstore;1"].
|
let ss = Cc["@mozilla.org/browser/sessionstore;1"].
|
||||||
getService(Ci.nsISessionStore);
|
getService(Ci.nsISessionStore);
|
||||||
let ww = Cc["@mozilla.org/embedcomp/window-watcher;1"].
|
|
||||||
getService(Ci.nsIWindowWatcher);
|
|
||||||
|
|
||||||
waitForExplicitFinish();
|
waitForExplicitFinish();
|
||||||
|
|
||||||
|
@ -68,14 +66,8 @@ function test() {
|
||||||
}]
|
}]
|
||||||
};
|
};
|
||||||
|
|
||||||
let windowObserver = {
|
var theWin = openDialog(location, "", "chrome,all,dialog=no");
|
||||||
observe: function(aSubject, aTopic, aData) {
|
|
||||||
let theWin = aSubject.QueryInterface(Ci.nsIDOMWindow);
|
|
||||||
|
|
||||||
switch(aTopic) {
|
|
||||||
case "domwindowopened":
|
|
||||||
theWin.addEventListener("load", function () {
|
theWin.addEventListener("load", function () {
|
||||||
theWin.removeEventListener("load", arguments.callee, false);
|
|
||||||
executeSoon(function () {
|
executeSoon(function () {
|
||||||
var gotError = false;
|
var gotError = false;
|
||||||
try {
|
try {
|
||||||
|
@ -85,27 +77,10 @@ function test() {
|
||||||
gotError = true;
|
gotError = true;
|
||||||
}
|
}
|
||||||
ok(!gotError, "Didn't get a malformed URI error.");
|
ok(!gotError, "Didn't get a malformed URI error.");
|
||||||
executeSoon(function() {
|
|
||||||
theWin.close();
|
theWin.close();
|
||||||
});
|
|
||||||
});
|
|
||||||
}, false);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case "domwindowclosed":
|
|
||||||
ww.unregisterNotification(this);
|
|
||||||
is(browserWindowsCount(), 1, "Only one browser window should be open eventually");
|
is(browserWindowsCount(), 1, "Only one browser window should be open eventually");
|
||||||
finish();
|
finish();
|
||||||
break;
|
});
|
||||||
}
|
}, false);
|
||||||
}
|
|
||||||
}
|
|
||||||
ww.registerNotification(windowObserver);
|
|
||||||
ww.openWindow(null,
|
|
||||||
location,
|
|
||||||
"_blank",
|
|
||||||
"chrome,all,dialog=no",
|
|
||||||
null);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче