More debug spew for bug 528776

This commit is contained in:
Dão Gottwald 2009-11-15 14:32:11 +01:00
Родитель 0d5b8f2a34
Коммит 973df87a12
1 изменённых файлов: 8 добавлений и 2 удалений

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

@ -54,8 +54,14 @@ function test() {
let win = e.getNext();
if (!win.closed) {
++count;
if (win != window)
info("secondary window content location: " + win.content.location);
if (win != window) {
try {
var tabs = win.gBrowser.mTabs.length;
} catch (e) {
info(e);
}
info("secondary window: " + [win.document.readyState, win.content.location, tabs]);
}
}
}