mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 607639 - Check for any window left open after a browser-chrome test; r=gavin
This commit is contained in:
parent
795cbd583e
commit
395e5a8864
@ -90,11 +90,21 @@ Tester.prototype = {
|
||||
}
|
||||
|
||||
this.dumper.dump("TEST-INFO | checking window state\n");
|
||||
let windowsEnum = this._wm.getEnumerator("navigator:browser");
|
||||
let windowsEnum = this._wm.getEnumerator(null);
|
||||
while (windowsEnum.hasMoreElements()) {
|
||||
let win = windowsEnum.getNext();
|
||||
if (win != window && !win.closed) {
|
||||
let msg = baseMsg.replace("{elt}", "browser window");
|
||||
if (win != window && !win.closed &&
|
||||
win.document.documentElement.getAttribute("id") != "browserTestHarness") {
|
||||
let type = win.document.documentElement.getAttribute("windowtype");
|
||||
switch (type) {
|
||||
case "navigator:browser":
|
||||
type = "browser window";
|
||||
break;
|
||||
case null:
|
||||
type = "unknown window";
|
||||
break;
|
||||
}
|
||||
let msg = baseMsg.replace("{elt}", type);
|
||||
if (this.currentTest)
|
||||
this.currentTest.addResult(new testResult(false, msg, "", false));
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user