Bug 633725 - docload_wnd.xul (and nsRootAcc_wnd.xul) tries to load about:robots which is Firefox specific (atm); (Av1) s/about:robots/about:/g, Replace bug 586818 comment with an explicit todo().

r=marco.zehe (a=test-only).
This commit is contained in:
Serge Gautherie 2011-02-27 01:19:06 +01:00
Родитель 84e7e09f45
Коммит 4f1c99769e
3 изменённых файлов: 4 добавлений и 4 удалений

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

@ -226,7 +226,7 @@
gTabBrowser = document.getElementById("content");
gQueue = new gOpenerWnd.eventQueue();
gQueue.push(new loadURIInvoker("about:robots"));
gQueue.push(new loadURIInvoker("about:"));
gQueue.push(new clickReloadBtnInvoker());
gQueue.push(new loadURIInvoker("about:mozilla"));
gQueue.push(new reloadInvoker());

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

@ -88,7 +88,7 @@
function doTest()
{
var tabBrowser = document.getElementById("content");
tabBrowser.loadURI("about:robots");
tabBrowser.loadURI("about:");
tabBrowser.addTab("about:mozilla");
gQueue = new gOpenerWnd.eventQueue();

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

@ -26,12 +26,12 @@
function doTest()
{
// Actually, just disable this test everywhere -- bug 586818.
todo(false, "Disabled test. (Bug 586818)");
SimpleTest.finish();
return;
if (LINUX) {
todo(false, "Enable test on Linux - see bug 525175.");
todo(false, "Skip test on Linux. (Bug 525175)");
SimpleTest.finish();
return;
}