From 074d23a851f57f30d47890bfda77aec160e1bf1b Mon Sep 17 00:00:00 2001 From: Frank Wein Date: Thu, 6 Dec 2012 18:42:00 +0100 Subject: [PATCH] Bug 792899 - docshell/test/chrome/test_bug789773.xul uses about:home which SeaMonkey doesn't have, r=bholley --- docshell/test/chrome/test_bug789773.xul | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docshell/test/chrome/test_bug789773.xul b/docshell/test/chrome/test_bug789773.xul index 80fe63f06779..b7a2b3d1c3fb 100644 --- a/docshell/test/chrome/test_bug789773.xul +++ b/docshell/test/chrome/test_bug789773.xul @@ -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() {