diff --git a/accessible/tests/mochitest/tree/test_dochierarchy.html b/accessible/tests/mochitest/tree/test_dochierarchy.html index 0bc9686aabea..d2c07934227f 100644 --- a/accessible/tests/mochitest/tree/test_dochierarchy.html +++ b/accessible/tests/mochitest/tree/test_dochierarchy.html @@ -31,7 +31,7 @@ is(root.parentDocument, null, "Wrong parent document of root accessible"); - is(root.childDocumentCount, 1, + is(root.childDocumentCount, SEAMONKEY ? 1 : 3, "Wrong child document count of root accessible"); is(root.getChildDocumentAt(0), tabDoc, "Wrong child document at index 0 of root accessible"); diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 4d296f176f79..0f48094b3ae1 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1045,6 +1045,9 @@ pref("services.sync.prefs.sync.xpinstall.whitelist.required", true); // Disable the error console pref("devtools.errorconsole.enabled", false); +// Enable the developer toolbar +pref("devtools.toolbar.enabled", false); + // Enable the Inspector pref("devtools.inspector.enabled", true); pref("devtools.inspector.htmlHeight", 112); @@ -1058,9 +1061,14 @@ pref("devtools.layoutview.open", false); // Enable the Debugger pref("devtools.debugger.enabled", false); +pref("devtools.debugger.remote-enabled", false); +pref("devtools.debugger.remote-host", "localhost"); +pref("devtools.debugger.remote-port", 6000); // The default Debugger UI height pref("devtools.debugger.ui.height", 250); +pref("devtools.debugger.ui.remote-win.width", 900); +pref("devtools.debugger.ui.remote-win.height", 400); // Enable the style inspector pref("devtools.styleinspector.enabled", true); @@ -1083,8 +1091,14 @@ pref("devtools.styleeditor.transitions", true); // Enable tools for Chrome development. pref("devtools.chrome.enabled", false); -// Disable the GCLI enhanced command line. -pref("devtools.gcli.enable", false); +// Display the introductory text +pref("devtools.gcli.hideIntro", false); + +// How eager are we to show help: never=1, sometimes=2, always=3 +pref("devtools.gcli.eagerHelper", 2); + +// Do we allow the 'pref set' command +pref("devtools.gcli.allowSet", false); // The last Web Console height. This is initially 0 which means that the Web // Console will use the default height next time it shows. diff --git a/browser/base/content/browser-appmenu.inc b/browser/base/content/browser-appmenu.inc index 6d64185c3c39..f9fe447e7302 100644 --- a/browser/base/content/browser-appmenu.inc +++ b/browser/base/content/browser-appmenu.inc @@ -176,8 +176,14 @@ - + +