Bug 792899 - docshell/test/chrome/test_bug789773.xul uses about:home which SeaMonkey doesn't have, r=bholley

This commit is contained in:
Frank Wein 2012-12-06 18:42:00 +01:00
Родитель b31104601c
Коммит 074d23a851
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -39,7 +39,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=789773
wp.DOMWindow; // Force the lazy creation of a DOM window.
calledListenerForBrowserXUL = true;
}
if (/aboutHome.xhtml/.test(req.name) && (stateFlags & Ci.nsIWebProgressListener.STATE_STOP))
if (/mozilla.xhtml/.test(req.name) && (stateFlags & Ci.nsIWebProgressListener.STATE_STOP))
finishTest();
},
QueryInterface: function(iid) {
@ -55,7 +55,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=789773
webProgress.addProgressListener(testProgressListener, Ci.nsIWebProgress.NOTIFY_STATE_REQUEST);
// Open the window.
var popup = window.open("about:home", "_blank", "width=640,height=400");
var popup = window.open("about:mozilla", "_blank", "width=640,height=400");
// Wait for the window to load.
function finishTest() {