2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-04-18 13:41:49 +00:00
|
|
|
|
|
|
|
#filter substitution
|
|
|
|
|
2012-05-18 16:31:27 +00:00
|
|
|
// For browser.xml binding
|
|
|
|
//
|
|
|
|
// cacheRatio* is a ratio that determines the amount of pixels to cache. The
|
|
|
|
// ratio is multiplied by the viewport width or height to get the displayport's
|
|
|
|
// width or height, respectively.
|
|
|
|
//
|
|
|
|
// (divide integer value by 1000 to get the ratio)
|
|
|
|
//
|
|
|
|
// For instance: cachePercentageWidth is 1500
|
|
|
|
// viewport height is 500
|
|
|
|
// => display port height will be 500 * 1.5 = 750
|
|
|
|
//
|
|
|
|
pref("toolkit.browser.cacheRatioWidth", 2000);
|
|
|
|
pref("toolkit.browser.cacheRatioHeight", 3000);
|
|
|
|
|
2011-01-18 22:00:36 +00:00
|
|
|
// How long before a content view (a handle to a remote scrollable object)
|
|
|
|
// expires.
|
|
|
|
pref("toolkit.browser.contentViewExpire", 3000);
|
2010-09-01 23:25:15 +00:00
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("toolkit.defaultChromeURI", "chrome://browser/content/browser.xul");
|
2008-07-11 18:51:28 +00:00
|
|
|
pref("browser.chromeURL", "chrome://browser/content/");
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2012-06-01 12:42:38 +00:00
|
|
|
pref("browser.tabs.remote", false);
|
2010-03-26 15:21:53 +00:00
|
|
|
|
2012-10-19 15:46:55 +00:00
|
|
|
// If a tab has not been active for this long (seconds), then it may be
|
|
|
|
// turned into a zombie tab to preemptively free up memory. -1 disables time-based
|
2012-11-02 15:02:59 +00:00
|
|
|
// expiration (but low-memory conditions may still require the tab to be zombified).
|
|
|
|
pref("browser.tabs.expireTime", 3600);
|
2012-10-19 15:46:55 +00:00
|
|
|
|
2012-05-18 16:31:27 +00:00
|
|
|
// From libpref/src/init/all.js, extended to allow a slightly wider zoom range.
|
|
|
|
pref("zoom.minPercent", 20);
|
|
|
|
pref("zoom.maxPercent", 400);
|
|
|
|
pref("toolkit.zoomManager.zoomValues", ".2,.3,.5,.67,.8,.9,1,1.1,1.2,1.33,1.5,1.7,2,2.4,3,4");
|
|
|
|
|
2011-12-21 05:04:26 +00:00
|
|
|
// Mobile will use faster, less durable mode.
|
|
|
|
pref("toolkit.storage.synchronous", 0);
|
|
|
|
|
2011-08-24 21:01:18 +00:00
|
|
|
pref("browser.viewport.desktopWidth", 980);
|
2012-12-21 15:22:16 +00:00
|
|
|
// The default fallback zoom level to render pages at. Set to -1 to fit page; otherwise
|
|
|
|
// the value is divided by 1000 and clamped to hard-coded min/max scale values.
|
|
|
|
pref("browser.viewport.defaultZoom", -1);
|
2010-04-23 00:54:41 +00:00
|
|
|
|
2010-12-16 04:01:00 +00:00
|
|
|
/* allow scrollbars to float above chrome ui */
|
|
|
|
pref("ui.scrollbarsCanOverlapContent", 1);
|
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
/* cache prefs */
|
2011-11-03 16:37:43 +00:00
|
|
|
pref("browser.cache.disk.enable", true);
|
2012-04-14 23:44:02 +00:00
|
|
|
pref("browser.cache.disk.capacity", 20480); // kilobytes
|
2012-05-05 02:46:36 +00:00
|
|
|
pref("browser.cache.disk.max_entry_size", 4096); // kilobytes
|
2012-05-31 02:59:33 +00:00
|
|
|
pref("browser.cache.disk.smart_size.enabled", true);
|
|
|
|
pref("browser.cache.disk.smart_size.first_run", true);
|
2010-01-05 21:57:26 +00:00
|
|
|
|
2012-09-25 17:04:36 +00:00
|
|
|
#ifdef MOZ_PKG_SPECIAL
|
|
|
|
// low memory devices
|
|
|
|
pref("browser.cache.memory.enable", false);
|
|
|
|
#else
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("browser.cache.memory.enable", true);
|
2012-09-25 17:04:36 +00:00
|
|
|
#endif
|
2009-07-01 18:32:06 +00:00
|
|
|
pref("browser.cache.memory.capacity", 1024); // kilobytes
|
|
|
|
|
2013-09-20 09:11:25 +00:00
|
|
|
pref("browser.cache.memory_limit", 5120); // 5 MB
|
|
|
|
|
2009-07-01 18:32:06 +00:00
|
|
|
/* image cache prefs */
|
2009-07-01 19:12:58 +00:00
|
|
|
pref("image.cache.size", 1048576); // bytes
|
2012-09-27 18:12:56 +00:00
|
|
|
pref("image.high_quality_downscaling.enabled", false);
|
2009-07-01 18:32:06 +00:00
|
|
|
|
|
|
|
/* offline cache prefs */
|
2009-10-14 20:36:47 +00:00
|
|
|
pref("browser.offline-apps.notify", true);
|
2009-07-01 18:32:06 +00:00
|
|
|
pref("browser.cache.offline.enable", true);
|
|
|
|
pref("browser.cache.offline.capacity", 5120); // kilobytes
|
|
|
|
pref("offline-apps.quota.warn", 1024); // kilobytes
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2012-01-17 11:51:17 +00:00
|
|
|
// cache compression turned off for now - see bug #715198
|
|
|
|
pref("browser.cache.compression_level", 0);
|
|
|
|
|
2012-12-13 18:06:05 +00:00
|
|
|
/* disable some protocol warnings */
|
2010-08-25 05:10:52 +00:00
|
|
|
pref("network.protocol-handler.warn-external.tel", false);
|
2012-12-13 18:06:05 +00:00
|
|
|
pref("network.protocol-handler.warn-external.sms", false);
|
2010-08-25 05:10:52 +00:00
|
|
|
pref("network.protocol-handler.warn-external.mailto", false);
|
2011-02-09 19:50:23 +00:00
|
|
|
pref("network.protocol-handler.warn-external.vnd.youtube", false);
|
2010-08-25 05:10:52 +00:00
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
/* http prefs */
|
|
|
|
pref("network.http.pipelining", true);
|
|
|
|
pref("network.http.pipelining.ssl", true);
|
|
|
|
pref("network.http.proxy.pipelining", true);
|
2008-08-01 21:20:56 +00:00
|
|
|
pref("network.http.pipelining.maxrequests" , 6);
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("network.http.keep-alive.timeout", 600);
|
2012-06-10 23:44:50 +00:00
|
|
|
pref("network.http.max-connections", 20);
|
|
|
|
pref("network.http.max-persistent-connections-per-server", 6);
|
2012-09-05 12:27:31 +00:00
|
|
|
pref("network.http.max-persistent-connections-per-proxy", 20);
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2013-05-29 04:07:03 +00:00
|
|
|
// spdy
|
|
|
|
pref("network.http.spdy.push-allowance", 32768);
|
|
|
|
|
2011-01-06 18:28:16 +00:00
|
|
|
// See bug 545869 for details on why these are set the way they are
|
|
|
|
pref("network.buffer.cache.count", 24);
|
|
|
|
pref("network.buffer.cache.size", 16384);
|
|
|
|
|
2014-01-18 01:45:48 +00:00
|
|
|
// predictive actions
|
|
|
|
pref("network.seer.max-db-size", 2097152); // bytes
|
|
|
|
pref("network.seer.preserve", 50); // percentage of seer data to keep when cleaning up
|
|
|
|
|
2010-08-24 08:42:28 +00:00
|
|
|
/* history max results display */
|
|
|
|
pref("browser.display.history.maxresults", 100);
|
|
|
|
|
2011-03-25 17:41:44 +00:00
|
|
|
/* How many times should have passed before the remote tabs list is refreshed */
|
|
|
|
pref("browser.display.remotetabs.timeout", 10);
|
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
/* session history */
|
2009-06-01 15:47:55 +00:00
|
|
|
pref("browser.sessionhistory.max_total_viewers", 1);
|
2008-05-09 22:56:14 +00:00
|
|
|
pref("browser.sessionhistory.max_entries", 50);
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2010-12-16 01:47:38 +00:00
|
|
|
/* session store */
|
2010-12-31 02:43:08 +00:00
|
|
|
pref("browser.sessionstore.resume_session_once", false);
|
2012-10-29 23:34:29 +00:00
|
|
|
pref("browser.sessionstore.resume_from_crash", true);
|
2010-12-16 01:47:38 +00:00
|
|
|
pref("browser.sessionstore.interval", 10000); // milliseconds
|
2011-06-29 23:20:22 +00:00
|
|
|
pref("browser.sessionstore.max_tabs_undo", 1);
|
2012-01-28 06:04:54 +00:00
|
|
|
pref("browser.sessionstore.max_resumed_crashes", 1);
|
|
|
|
pref("browser.sessionstore.recent_crashes", 0);
|
2010-12-16 01:47:38 +00:00
|
|
|
|
2008-09-18 18:15:23 +00:00
|
|
|
/* these should help performance */
|
|
|
|
pref("mozilla.widget.force-24bpp", true);
|
|
|
|
pref("mozilla.widget.use-buffer-pixmap", true);
|
|
|
|
pref("mozilla.widget.disable-native-theme", true);
|
2011-05-22 16:55:55 +00:00
|
|
|
pref("layout.reflow.synthMouseMove", false);
|
2013-01-21 19:43:06 +00:00
|
|
|
pref("layout.css.report_errors", false);
|
2008-09-18 18:15:23 +00:00
|
|
|
|
2008-05-02 20:15:45 +00:00
|
|
|
/* download manager (don't show the window or alert) */
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("browser.download.useDownloadDir", true);
|
2008-08-28 21:45:58 +00:00
|
|
|
pref("browser.download.folderList", 1); // Default to ~/Downloads
|
2008-05-02 20:15:45 +00:00
|
|
|
pref("browser.download.manager.showAlertOnComplete", false);
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("browser.download.manager.showAlertInterval", 2000);
|
|
|
|
pref("browser.download.manager.retention", 2);
|
2008-12-03 22:32:51 +00:00
|
|
|
pref("browser.download.manager.showWhenStarting", false);
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("browser.download.manager.closeWhenDone", true);
|
|
|
|
pref("browser.download.manager.openDelay", 0);
|
|
|
|
pref("browser.download.manager.focusWhenStarting", false);
|
|
|
|
pref("browser.download.manager.flashCount", 2);
|
|
|
|
pref("browser.download.manager.displayedHistoryDays", 7);
|
|
|
|
|
2011-08-16 17:12:03 +00:00
|
|
|
/* download helper */
|
|
|
|
pref("browser.helperApps.deleteTempFileOnExit", false);
|
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
/* password manager */
|
|
|
|
pref("signon.rememberSignons", true);
|
|
|
|
pref("signon.expireMasterPassword", false);
|
2011-10-27 04:29:46 +00:00
|
|
|
pref("signon.debug", false);
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2013-07-16 13:12:56 +00:00
|
|
|
/* form helper (scroll to and optionally zoom into editable fields) */
|
|
|
|
pref("formhelper.mode", 2); // 0 = disabled, 1 = enabled, 2 = dynamic depending on screen size
|
2010-03-30 17:56:06 +00:00
|
|
|
pref("formhelper.autozoom", true);
|
|
|
|
|
2010-07-19 14:51:03 +00:00
|
|
|
/* find helper */
|
|
|
|
pref("findhelper.autozoom", true);
|
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
/* autocomplete */
|
|
|
|
pref("browser.formfill.enable", true);
|
|
|
|
|
|
|
|
/* spellcheck */
|
2011-01-27 20:30:48 +00:00
|
|
|
pref("layout.spellcheckDefault", 0);
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2012-07-09 14:53:09 +00:00
|
|
|
/* new html5 forms */
|
|
|
|
pref("dom.experimental_forms", true);
|
2013-09-12 18:11:00 +00:00
|
|
|
pref("dom.forms.number", true);
|
2013-10-28 18:56:59 +00:00
|
|
|
// Don't enable <input type=color> yet as we don't have a color picker
|
|
|
|
// implemented for Android (bug 875750)
|
2013-12-11 23:51:01 +00:00
|
|
|
pref("dom.forms.color", true);
|
2012-07-09 14:53:09 +00:00
|
|
|
|
2008-04-18 13:41:49 +00:00
|
|
|
/* extension manager and xpinstall */
|
2009-07-05 16:20:34 +00:00
|
|
|
pref("xpinstall.whitelist.add", "addons.mozilla.org");
|
2012-12-05 21:03:05 +00:00
|
|
|
pref("xpinstall.whitelist.add.180", "marketplace.firefox.com");
|
2010-03-17 03:42:01 +00:00
|
|
|
|
2011-11-16 15:18:34 +00:00
|
|
|
pref("extensions.enabledScopes", 1);
|
2010-03-17 03:42:01 +00:00
|
|
|
pref("extensions.autoupdate.enabled", true);
|
|
|
|
pref("extensions.autoupdate.interval", 86400);
|
2009-11-13 21:32:29 +00:00
|
|
|
pref("extensions.update.enabled", false);
|
2008-04-18 13:41:49 +00:00
|
|
|
pref("extensions.update.interval", 86400);
|
|
|
|
pref("extensions.dss.enabled", false);
|
|
|
|
pref("extensions.dss.switchPending", false);
|
|
|
|
pref("extensions.ignoreMTimeChanges", false);
|
|
|
|
pref("extensions.logging.enabled", false);
|
2008-08-20 02:18:36 +00:00
|
|
|
pref("extensions.hideInstallButton", true);
|
2009-09-15 18:04:19 +00:00
|
|
|
pref("extensions.showMismatchUI", false);
|
2010-04-30 19:07:27 +00:00
|
|
|
pref("extensions.hideUpdateButton", false);
|
2012-01-31 00:53:14 +00:00
|
|
|
pref("extensions.strictCompatibility", false);
|
|
|
|
pref("extensions.minCompatibleAppVersion", "11.0");
|
2008-04-18 13:41:49 +00:00
|
|
|
|
2012-01-31 00:53:14 +00:00
|
|
|
pref("extensions.update.url", "https://versioncheck.addons.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE%");
|
2012-03-07 08:18:28 +00:00
|
|
|
pref("extensions.update.background.url", "https://versioncheck-bg.addons.mozilla.org/update/VersionCheck.php?reqVersion=%REQ_VERSION%&id=%ITEM_ID%&version=%ITEM_VERSION%&maxAppVersion=%ITEM_MAXAPPVERSION%&status=%ITEM_STATUS%&appID=%APP_ID%&appVersion=%APP_VERSION%&appOS=%APP_OS%&appABI=%APP_ABI%&locale=%APP_LOCALE%¤tAppVersion=%CURRENT_APP_VERSION%&updateType=%UPDATE_TYPE%&compatMode=%COMPATIBILITY_MODE%");
|
2008-05-22 23:58:27 +00:00
|
|
|
|
2008-08-20 02:18:36 +00:00
|
|
|
/* preferences for the Get Add-ons pane */
|
2011-01-21 16:50:06 +00:00
|
|
|
pref("extensions.getAddons.cache.enabled", true);
|
2010-09-15 10:40:12 +00:00
|
|
|
pref("extensions.getAddons.maxResults", 15);
|
2012-02-02 21:04:27 +00:00
|
|
|
pref("extensions.getAddons.recommended.browseURL", "https://addons.mozilla.org/%LOCALE%/android/recommended/");
|
|
|
|
pref("extensions.getAddons.recommended.url", "https://services.addons.mozilla.org/%LOCALE%/android/api/%API_VERSION%/list/featured/all/%MAX_RESULTS%/%OS%/%VERSION%");
|
2012-03-07 08:18:30 +00:00
|
|
|
pref("extensions.getAddons.search.browseURL", "https://addons.mozilla.org/%LOCALE%/android/search?q=%TERMS%&platform=%OS%&appver=%VERSION%");
|
2012-02-02 21:04:27 +00:00
|
|
|
pref("extensions.getAddons.search.url", "https://services.addons.mozilla.org/%LOCALE%/android/api/%API_VERSION%/search/%TERMS%/all/%MAX_RESULTS%/%OS%/%VERSION%/%COMPATIBILITY_MODE%");
|
|
|
|
pref("extensions.getAddons.browseAddons", "https://addons.mozilla.org/%LOCALE%/android/");
|
|
|
|
pref("extensions.getAddons.get.url", "https://services.addons.mozilla.org/%LOCALE%/android/api/%API_VERSION%/search/guid:%IDS%?src=mobile&appOS=%OS%&appVersion=%VERSION%");
|
|
|
|
pref("extensions.getAddons.getWithPerformance.url", "https://services.addons.mozilla.org/%LOCALE%/android/api/%API_VERSION%/search/guid:%IDS%?src=mobile&appOS=%OS%&appVersion=%VERSION%&tMain=%TIME_MAIN%&tFirstPaint=%TIME_FIRST_PAINT%&tSessionRestored=%TIME_SESSION_RESTORED%");
|
2008-08-20 02:18:36 +00:00
|
|
|
|
2011-06-07 19:11:37 +00:00
|
|
|
/* preference for the locale picker */
|
|
|
|
pref("extensions.getLocales.get.url", "");
|
2011-09-02 16:37:54 +00:00
|
|
|
pref("extensions.compatability.locales.buildid", "0");
|
2011-06-07 19:11:37 +00:00
|
|
|
|
2008-08-20 02:18:36 +00:00
|
|
|
/* blocklist preferences */
|
|
|
|
pref("extensions.blocklist.enabled", true);
|
|
|
|
pref("extensions.blocklist.interval", 86400);
|
2011-02-02 14:44:18 +00:00
|
|
|
pref("extensions.blocklist.url", "https://addons.mozilla.org/blocklist/3/%APP_ID%/%APP_VERSION%/%PRODUCT%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/%PING_COUNT%/%TOTAL_PING_COUNT%/%DAYS_SINCE_LAST_PING%/");
|
2010-01-09 00:40:19 +00:00
|
|
|
pref("extensions.blocklist.detailsURL", "https://www.mozilla.com/%LOCALE%/blocklist/");
|
2008-08-20 02:18:36 +00:00
|
|
|
|
2008-07-11 18:51:28 +00:00
|
|
|
/* block popups by default, and notify the user about blocked popups */
|
|
|
|
pref("dom.disable_open_during_load", true);
|
|
|
|
pref("privacy.popups.showBrowserMessage", true);
|
|
|
|
|
2012-03-08 23:29:30 +00:00
|
|
|
/* disable opening windows with the dialog feature */
|
|
|
|
pref("dom.disable_window_open_dialog_feature", true);
|
2012-04-13 04:55:25 +00:00
|
|
|
pref("dom.disable_window_showModalDialog", true);
|
2012-04-13 19:45:06 +00:00
|
|
|
pref("dom.disable_window_print", true);
|
2012-05-03 16:15:38 +00:00
|
|
|
pref("dom.disable_window_find", true);
|
2012-03-08 23:29:30 +00:00
|
|
|
|
2008-07-15 15:21:39 +00:00
|
|
|
pref("keyword.enabled", true);
|
|
|
|
|
2008-07-16 15:41:38 +00:00
|
|
|
pref("accessibility.typeaheadfind", false);
|
|
|
|
pref("accessibility.typeaheadfind.timeout", 5000);
|
|
|
|
pref("accessibility.typeaheadfind.flashBar", 1);
|
|
|
|
pref("accessibility.typeaheadfind.linksonly", false);
|
2008-08-04 20:53:40 +00:00
|
|
|
pref("accessibility.typeaheadfind.casesensitive", 0);
|
2009-02-18 18:04:46 +00:00
|
|
|
pref("accessibility.browsewithcaret_shortcut.enabled", false);
|
2008-07-16 15:41:38 +00:00
|
|
|
|
2011-02-18 19:48:50 +00:00
|
|
|
// Whether the character encoding menu is under the main Firefox button. This
|
|
|
|
// preference is a string so that localizers can alter it.
|
|
|
|
pref("browser.menu.showCharacterEncoding", "chrome://browser/locale/browser.properties");
|
|
|
|
pref("intl.charsetmenu.browser.static", "chrome://browser/locale/browser.properties");
|
|
|
|
|
2008-07-16 15:41:38 +00:00
|
|
|
// pointer to the default engine name
|
2010-01-09 00:40:19 +00:00
|
|
|
pref("browser.search.defaultenginename", "chrome://browser/locale/region.properties");
|
2008-09-09 15:52:21 +00:00
|
|
|
// SSL error page behaviour
|
|
|
|
pref("browser.ssl_override_behavior", 2);
|
|
|
|
pref("browser.xul.error_pages.expert_bad_cert", false);
|
2008-07-16 15:41:38 +00:00
|
|
|
|
|
|
|
// disable logging for the search service by default
|
|
|
|
pref("browser.search.log", false);
|
|
|
|
|
2009-06-09 17:55:14 +00:00
|
|
|
// ordering of search engines in the engine list.
|
|
|
|
pref("browser.search.order.1", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.search.order.2", "chrome://browser/locale/region.properties");
|
2013-10-05 16:07:09 +00:00
|
|
|
pref("browser.search.order.3", "chrome://browser/locale/region.properties");
|
2008-07-16 15:41:38 +00:00
|
|
|
|
|
|
|
// disable updating
|
|
|
|
pref("browser.search.update", false);
|
|
|
|
pref("browser.search.update.log", false);
|
|
|
|
pref("browser.search.updateinterval", 6);
|
|
|
|
|
2012-08-20 18:41:54 +00:00
|
|
|
// disable search suggestions by default
|
|
|
|
pref("browser.search.suggest.enabled", false);
|
2012-10-02 17:51:48 +00:00
|
|
|
pref("browser.search.suggest.prompted", false);
|
2008-07-22 20:33:22 +00:00
|
|
|
|
2009-11-25 17:54:06 +00:00
|
|
|
// Tell the search service to load search plugins from the locale JAR
|
|
|
|
pref("browser.search.loadFromJars", true);
|
|
|
|
pref("browser.search.jarURIs", "chrome://browser/locale/searchplugins/");
|
|
|
|
|
|
|
|
// tell the search service that we don't really expose the "current engine"
|
|
|
|
pref("browser.search.noCurrentEngine", true);
|
|
|
|
|
2013-01-11 11:20:58 +00:00
|
|
|
#ifdef MOZ_OFFICIAL_BRANDING
|
|
|
|
// {moz:official} expands to "official"
|
|
|
|
pref("browser.search.official", true);
|
|
|
|
#endif
|
|
|
|
|
2014-01-20 22:26:27 +00:00
|
|
|
// Control media casting feature
|
|
|
|
pref("browser.casting.enabled", false);
|
|
|
|
|
2013-04-17 16:21:49 +00:00
|
|
|
// Enable sparse localization by setting a few package locale overrides
|
|
|
|
pref("chrome.override_package.global", "browser");
|
|
|
|
pref("chrome.override_package.mozapps", "browser");
|
|
|
|
pref("chrome.override_package.passwordmgr", "browser");
|
|
|
|
|
2008-07-22 20:33:22 +00:00
|
|
|
// enable xul error pages
|
|
|
|
pref("browser.xul.error_pages.enabled", true);
|
|
|
|
|
2009-09-21 10:02:43 +00:00
|
|
|
// Specify emptyRestriction = 0 so that bookmarks appear in the list by default
|
2009-09-14 22:53:41 +00:00
|
|
|
pref("browser.urlbar.default.behavior", 0);
|
|
|
|
pref("browser.urlbar.default.behavior.emptyRestriction", 0);
|
|
|
|
|
2009-10-21 19:36:44 +00:00
|
|
|
// Let the faviconservice know that we display favicons as 32x32px so that it
|
|
|
|
// uses the right size when optimizing favicons
|
|
|
|
pref("places.favicons.optimizeToDimension", 32);
|
|
|
|
|
2009-06-09 17:55:14 +00:00
|
|
|
// various and sundry awesomebar prefs (should remove/re-evaluate
|
2008-07-25 17:30:17 +00:00
|
|
|
// these once bug 447900 is fixed)
|
|
|
|
pref("browser.urlbar.clickSelectsAll", true);
|
2009-07-22 00:05:01 +00:00
|
|
|
pref("browser.urlbar.doubleClickSelectsAll", true);
|
2008-07-25 17:30:17 +00:00
|
|
|
pref("browser.urlbar.autoFill", false);
|
|
|
|
pref("browser.urlbar.matchOnlyTyped", false);
|
|
|
|
pref("browser.urlbar.matchBehavior", 1);
|
|
|
|
pref("browser.urlbar.filter.javascript", true);
|
2010-04-13 03:38:42 +00:00
|
|
|
pref("browser.urlbar.maxRichResults", 24); // increased so we see more results when portrait
|
2008-07-25 17:30:17 +00:00
|
|
|
pref("browser.urlbar.search.chunkSize", 1000);
|
|
|
|
pref("browser.urlbar.search.timeout", 100);
|
|
|
|
pref("browser.urlbar.restrict.history", "^");
|
|
|
|
pref("browser.urlbar.restrict.bookmark", "*");
|
|
|
|
pref("browser.urlbar.restrict.tag", "+");
|
|
|
|
pref("browser.urlbar.match.title", "#");
|
|
|
|
pref("browser.urlbar.match.url", "@");
|
2010-11-03 15:41:00 +00:00
|
|
|
pref("browser.urlbar.autocomplete.search_threshold", 5);
|
2008-07-25 17:30:17 +00:00
|
|
|
pref("browser.history.grouping", "day");
|
|
|
|
pref("browser.history.showSessions", false);
|
|
|
|
pref("browser.sessionhistory.max_entries", 50);
|
|
|
|
pref("browser.history_expire_days", 180);
|
|
|
|
pref("browser.history_expire_days_min", 90);
|
|
|
|
pref("browser.history_expire_sites", 40000);
|
|
|
|
pref("browser.places.migratePostDataAnnotations", true);
|
|
|
|
pref("browser.places.updateRecentTagsUri", true);
|
|
|
|
pref("places.frecency.numVisits", 10);
|
|
|
|
pref("places.frecency.numCalcOnIdle", 50);
|
|
|
|
pref("places.frecency.numCalcOnMigrate", 50);
|
|
|
|
pref("places.frecency.updateIdleTime", 60000);
|
|
|
|
pref("places.frecency.firstBucketCutoff", 4);
|
|
|
|
pref("places.frecency.secondBucketCutoff", 14);
|
|
|
|
pref("places.frecency.thirdBucketCutoff", 31);
|
|
|
|
pref("places.frecency.fourthBucketCutoff", 90);
|
|
|
|
pref("places.frecency.firstBucketWeight", 100);
|
|
|
|
pref("places.frecency.secondBucketWeight", 70);
|
|
|
|
pref("places.frecency.thirdBucketWeight", 50);
|
|
|
|
pref("places.frecency.fourthBucketWeight", 30);
|
|
|
|
pref("places.frecency.defaultBucketWeight", 10);
|
|
|
|
pref("places.frecency.embedVisitBonus", 0);
|
|
|
|
pref("places.frecency.linkVisitBonus", 100);
|
|
|
|
pref("places.frecency.typedVisitBonus", 2000);
|
|
|
|
pref("places.frecency.bookmarkVisitBonus", 150);
|
|
|
|
pref("places.frecency.downloadVisitBonus", 0);
|
|
|
|
pref("places.frecency.permRedirectVisitBonus", 0);
|
|
|
|
pref("places.frecency.tempRedirectVisitBonus", 0);
|
|
|
|
pref("places.frecency.defaultVisitBonus", 0);
|
|
|
|
pref("places.frecency.unvisitedBookmarkBonus", 140);
|
|
|
|
pref("places.frecency.unvisitedTypedBonus", 200);
|
2008-09-17 22:15:25 +00:00
|
|
|
|
|
|
|
// disable color management
|
|
|
|
pref("gfx.color_management.mode", 0);
|
2012-04-13 14:28:10 +00:00
|
|
|
|
2012-04-25 13:53:38 +00:00
|
|
|
// 0=fixed margin, 1=velocity bias, 2=dynamic resolution, 3=no margins, 4=prediction bias
|
2012-04-10 18:56:28 +00:00
|
|
|
pref("gfx.displayport.strategy", 1);
|
2012-10-13 15:18:20 +00:00
|
|
|
|
2012-04-13 14:28:10 +00:00
|
|
|
// all of the following displayport strategy prefs will be divided by 1000
|
|
|
|
// to obtain some multiplier which is then used in the strategy.
|
|
|
|
// fixed margin strategy options
|
|
|
|
pref("gfx.displayport.strategy_fm.multiplier", -1); // displayport dimension multiplier
|
|
|
|
pref("gfx.displayport.strategy_fm.danger_x", -1); // danger zone on x-axis when multiplied by viewport width
|
|
|
|
pref("gfx.displayport.strategy_fm.danger_y", -1); // danger zone on y-axis when multiplied by viewport height
|
2012-10-13 15:18:20 +00:00
|
|
|
|
2012-04-13 14:28:10 +00:00
|
|
|
// velocity bias strategy options
|
|
|
|
pref("gfx.displayport.strategy_vb.multiplier", -1); // displayport dimension multiplier
|
2012-04-25 13:53:38 +00:00
|
|
|
pref("gfx.displayport.strategy_vb.threshold", -1); // velocity threshold in inches/frame
|
2012-04-13 14:28:10 +00:00
|
|
|
pref("gfx.displayport.strategy_vb.reverse_buffer", -1); // fraction of buffer to keep in reverse direction from scroll
|
2012-04-14 13:50:04 +00:00
|
|
|
pref("gfx.displayport.strategy_vb.danger_x_base", -1); // danger zone on x-axis when multiplied by viewport width
|
|
|
|
pref("gfx.displayport.strategy_vb.danger_y_base", -1); // danger zone on y-axis when multiplied by viewport height
|
|
|
|
pref("gfx.displayport.strategy_vb.danger_x_incr", -1); // additional danger zone on x-axis when multiplied by viewport width and velocity
|
|
|
|
pref("gfx.displayport.strategy_vb.danger_y_incr", -1); // additional danger zone on y-axis when multiplied by viewport height and velocity
|
2012-10-13 15:18:20 +00:00
|
|
|
|
2012-04-25 13:53:38 +00:00
|
|
|
// prediction bias strategy options
|
|
|
|
pref("gfx.displayport.strategy_pb.threshold", -1); // velocity threshold in inches/frame
|
2008-09-20 05:56:06 +00:00
|
|
|
|
2013-07-04 13:53:27 +00:00
|
|
|
// Allow 24-bit colour when the hardware supports it
|
|
|
|
pref("gfx.android.rgb16.force", false);
|
|
|
|
|
2008-09-20 05:56:06 +00:00
|
|
|
// don't allow JS to move and resize existing windows
|
|
|
|
pref("dom.disable_window_move_resize", true);
|
2008-09-22 17:37:07 +00:00
|
|
|
|
2009-07-29 04:09:10 +00:00
|
|
|
// prevent click image resizing for nsImageDocument
|
|
|
|
pref("browser.enable_click_image_resizing", false);
|
|
|
|
|
2008-09-24 16:14:06 +00:00
|
|
|
// open in tab preferences
|
|
|
|
// 0=default window, 1=current window/tab, 2=new window, 3=new tab in most window
|
|
|
|
pref("browser.link.open_external", 3);
|
|
|
|
pref("browser.link.open_newwindow", 3);
|
2008-10-21 18:28:08 +00:00
|
|
|
// 0=force all new windows to tabs, 1=don't force, 2=only force those with no features set
|
|
|
|
pref("browser.link.open_newwindow.restriction", 0);
|
2008-09-24 21:11:01 +00:00
|
|
|
|
2008-09-07 06:54:06 +00:00
|
|
|
// controls which bits of private data to clear. by default we clear them all.
|
|
|
|
pref("privacy.item.cache", true);
|
|
|
|
pref("privacy.item.cookies", true);
|
|
|
|
pref("privacy.item.offlineApps", true);
|
|
|
|
pref("privacy.item.history", true);
|
|
|
|
pref("privacy.item.formdata", true);
|
|
|
|
pref("privacy.item.downloads", true);
|
|
|
|
pref("privacy.item.passwords", true);
|
|
|
|
pref("privacy.item.sessions", true);
|
2009-05-30 01:28:12 +00:00
|
|
|
pref("privacy.item.geolocation", true);
|
|
|
|
pref("privacy.item.siteSettings", true);
|
2011-02-25 01:02:24 +00:00
|
|
|
pref("privacy.item.syncAccount", true);
|
2009-05-30 01:28:12 +00:00
|
|
|
|
|
|
|
// enable geo
|
|
|
|
pref("geo.enabled", true);
|
2013-06-13 22:54:30 +00:00
|
|
|
pref("app.geo.reportdata", 0);
|
2009-05-30 01:28:12 +00:00
|
|
|
|
2009-03-05 20:18:42 +00:00
|
|
|
// content sink control -- controls responsiveness during page load
|
2009-12-18 20:19:57 +00:00
|
|
|
// see https://bugzilla.mozilla.org/show_bug.cgi?id=481566#c9
|
2011-11-29 23:27:39 +00:00
|
|
|
//pref("content.sink.enable_perf_mode", 2); // 0 - switch, 1 - interactive, 2 - perf
|
|
|
|
//pref("content.sink.pending_event_mode", 0);
|
|
|
|
//pref("content.sink.perf_deflect_count", 1000000);
|
|
|
|
//pref("content.sink.perf_parse_time", 50000000);
|
2009-03-05 20:18:42 +00:00
|
|
|
|
2011-07-07 18:27:07 +00:00
|
|
|
// Disable the JS engine's gc on memory pressure, since we do one in the mobile
|
|
|
|
// browser (bug 669346).
|
|
|
|
pref("javascript.options.gc_on_memory_pressure", false);
|
|
|
|
|
2012-08-20 04:15:12 +00:00
|
|
|
#ifdef MOZ_PKG_SPECIAL
|
|
|
|
// low memory devices
|
|
|
|
pref("javascript.options.mem.gc_high_frequency_heap_growth_max", 120);
|
|
|
|
pref("javascript.options.mem.gc_high_frequency_heap_growth_min", 101);
|
|
|
|
pref("javascript.options.mem.gc_high_frequency_high_limit_mb", 40);
|
|
|
|
pref("javascript.options.mem.gc_high_frequency_low_limit_mb", 10);
|
|
|
|
pref("javascript.options.mem.gc_low_frequency_heap_growth", 105);
|
|
|
|
pref("javascript.options.mem.high_water_mark", 16);
|
2012-10-26 23:06:19 +00:00
|
|
|
pref("javascript.options.mem.gc_allocation_threshold_mb", 3);
|
2013-06-21 01:06:53 +00:00
|
|
|
pref("javascript.options.mem.gc_decommit_threshold_mb", 1);
|
2012-08-20 04:15:12 +00:00
|
|
|
#else
|
|
|
|
pref("javascript.options.mem.high_water_mark", 32);
|
|
|
|
#endif
|
|
|
|
|
2010-10-08 00:46:49 +00:00
|
|
|
pref("dom.max_chrome_script_run_time", 0); // disable slow script dialog for chrome
|
2009-03-26 15:36:02 +00:00
|
|
|
pref("dom.max_script_run_time", 20);
|
2009-05-30 01:28:12 +00:00
|
|
|
|
2009-06-09 17:55:14 +00:00
|
|
|
// JS error console
|
2011-01-04 01:06:27 +00:00
|
|
|
pref("devtools.errorconsole.enabled", false);
|
2009-07-10 19:43:14 +00:00
|
|
|
|
2011-11-27 19:42:19 +00:00
|
|
|
pref("font.size.inflation.minTwips", 120);
|
2011-11-24 23:40:14 +00:00
|
|
|
|
2012-05-18 15:24:27 +00:00
|
|
|
// When true, zooming will be enabled on all sites, even ones that declare user-scalable=no.
|
|
|
|
pref("browser.ui.zoom.force-user-scalable", false);
|
2010-04-08 19:57:05 +00:00
|
|
|
|
2012-10-18 23:33:17 +00:00
|
|
|
// Touch radius (area around the touch location to look for target elements),
|
|
|
|
// in 1/240-inch pixels:
|
|
|
|
pref("browser.ui.touch.left", 32);
|
|
|
|
pref("browser.ui.touch.right", 32);
|
|
|
|
pref("browser.ui.touch.top", 48);
|
|
|
|
pref("browser.ui.touch.bottom", 16);
|
|
|
|
pref("browser.ui.touch.weight.visited", 120); // percentage
|
2010-04-08 18:50:05 +00:00
|
|
|
|
2013-05-30 11:53:24 +00:00
|
|
|
// The percentage of the screen that needs to be scrolled before margins are exposed.
|
|
|
|
pref("browser.ui.show-margins-threshold", 20);
|
|
|
|
|
2013-08-06 08:38:32 +00:00
|
|
|
// Maximum distance from the point where the user pressed where we still
|
|
|
|
// look for text to select
|
|
|
|
pref("browser.ui.selection.distance", 250);
|
|
|
|
|
2010-01-26 23:34:11 +00:00
|
|
|
// plugins
|
2011-11-15 15:43:42 +00:00
|
|
|
pref("plugin.disable", false);
|
2011-10-07 17:46:02 +00:00
|
|
|
pref("dom.ipc.plugins.enabled", false);
|
2009-09-03 18:04:50 +00:00
|
|
|
|
2013-06-22 03:36:32 +00:00
|
|
|
// This pref isn't actually used anymore, but we're leaving this here to avoid changing
|
|
|
|
// the default so that we can migrate a user-set pref. See bug 885357.
|
|
|
|
pref("plugins.click_to_play", true);
|
2013-05-15 20:30:40 +00:00
|
|
|
// The default value for nsIPluginTag.enabledState (STATE_CLICKTOPLAY = 1)
|
|
|
|
pref("plugin.default.state", 1);
|
2011-12-09 22:04:19 +00:00
|
|
|
|
2009-09-03 18:04:50 +00:00
|
|
|
// product URLs
|
2010-04-09 15:17:14 +00:00
|
|
|
// The breakpad report server to link to in about:crashes
|
2013-03-04 07:11:21 +00:00
|
|
|
pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/");
|
2012-03-12 19:08:15 +00:00
|
|
|
pref("app.support.baseURL", "http://support.mozilla.org/1/mobile/%VERSION%/%OS%/%LOCALE%/");
|
2012-08-27 04:33:11 +00:00
|
|
|
// Used to submit data to input from about:feedback
|
2013-03-05 16:17:49 +00:00
|
|
|
pref("app.feedback.postURL", "https://input.mozilla.org/%LOCALE%/feedback");
|
2013-06-26 13:46:14 +00:00
|
|
|
pref("app.privacyURL", "https://www.mozilla.org/legal/privacy/firefox.html");
|
2011-01-26 17:08:00 +00:00
|
|
|
pref("app.creditsURL", "http://www.mozilla.org/credits/");
|
2011-09-06 15:47:00 +00:00
|
|
|
pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/");
|
2012-02-24 19:40:20 +00:00
|
|
|
#if MOZ_UPDATE_CHANNEL == aurora
|
|
|
|
pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/auroranotes/");
|
|
|
|
#else
|
|
|
|
pref("app.releaseNotesURL", "http://www.mozilla.com/%LOCALE%/mobile/%VERSION%/releasenotes/");
|
|
|
|
#endif
|
2010-09-23 20:29:53 +00:00
|
|
|
#if MOZ_UPDATE_CHANNEL == beta
|
|
|
|
pref("app.faqURL", "http://www.mozilla.com/%LOCALE%/mobile/beta/faq/");
|
|
|
|
#else
|
|
|
|
pref("app.faqURL", "http://www.mozilla.com/%LOCALE%/mobile/faq/");
|
|
|
|
#endif
|
2013-07-11 08:28:28 +00:00
|
|
|
pref("app.marketplaceURL", "https://marketplace.firefox.com/");
|
2011-02-18 16:10:43 +00:00
|
|
|
|
2009-09-10 03:21:26 +00:00
|
|
|
// Name of alternate about: page for certificate errors (when undefined, defaults to about:neterror)
|
|
|
|
pref("security.alternate_certificate_error_page", "certerror");
|
2009-09-22 14:21:15 +00:00
|
|
|
|
2010-12-08 21:57:19 +00:00
|
|
|
pref("security.warn_viewing_mixed", false); // Warning is disabled. See Bug 616712.
|
2010-12-08 21:49:01 +00:00
|
|
|
|
2013-06-22 03:36:38 +00:00
|
|
|
// Block insecure active content on https pages
|
|
|
|
pref("security.mixed_content.block_active_content", true);
|
|
|
|
|
2009-10-26 05:58:13 +00:00
|
|
|
// Override some named colors to avoid inverse OS themes
|
|
|
|
pref("ui.-moz-dialog", "#efebe7");
|
|
|
|
pref("ui.-moz-dialogtext", "#101010");
|
|
|
|
pref("ui.-moz-field", "#fff");
|
|
|
|
pref("ui.-moz-fieldtext", "#1a1a1a");
|
|
|
|
pref("ui.-moz-buttonhoverface", "#f3f0ed");
|
|
|
|
pref("ui.-moz-buttonhovertext", "#101010");
|
|
|
|
pref("ui.-moz-combobox", "#fff");
|
|
|
|
pref("ui.-moz-comboboxtext", "#101010");
|
|
|
|
pref("ui.buttonface", "#ece7e2");
|
|
|
|
pref("ui.buttonhighlight", "#fff");
|
|
|
|
pref("ui.buttonshadow", "#aea194");
|
|
|
|
pref("ui.buttontext", "#101010");
|
|
|
|
pref("ui.captiontext", "#101010");
|
|
|
|
pref("ui.graytext", "#b1a598");
|
|
|
|
pref("ui.highlight", "#fad184");
|
|
|
|
pref("ui.highlighttext", "#1a1a1a");
|
|
|
|
pref("ui.infobackground", "#f5f5b5");
|
|
|
|
pref("ui.infotext", "#000");
|
|
|
|
pref("ui.menu", "#f7f5f3");
|
|
|
|
pref("ui.menutext", "#101010");
|
|
|
|
pref("ui.threeddarkshadow", "#000");
|
|
|
|
pref("ui.threedface", "#ece7e2");
|
|
|
|
pref("ui.threedhighlight", "#fff");
|
|
|
|
pref("ui.threedlightshadow", "#ece7e2");
|
|
|
|
pref("ui.threedshadow", "#aea194");
|
|
|
|
pref("ui.window", "#efebe7");
|
|
|
|
pref("ui.windowtext", "#101010");
|
|
|
|
pref("ui.windowframe", "#efebe7");
|
|
|
|
|
2009-12-01 20:58:29 +00:00
|
|
|
#ifdef MOZ_OFFICIAL_BRANDING
|
|
|
|
pref("browser.search.param.yahoo-fr", "moz35");
|
|
|
|
pref("browser.search.param.yahoo-fr-cjkt", "moz35");
|
2009-12-24 01:49:39 +00:00
|
|
|
pref("browser.search.param.yahoo-fr-ja", "mozff");
|
2009-12-01 20:58:29 +00:00
|
|
|
#endif
|
2010-01-21 17:48:08 +00:00
|
|
|
|
2012-08-20 04:15:10 +00:00
|
|
|
/* prefs used by the update timer system (including blocklist pings) */
|
|
|
|
pref("app.update.timerFirstInterval", 30000); // milliseconds
|
|
|
|
pref("app.update.timerMinimumDelay", 30); // seconds
|
2010-03-17 03:42:01 +00:00
|
|
|
|
2012-10-15 13:56:42 +00:00
|
|
|
// used by update service to decide whether or not to
|
|
|
|
// automatically download an update
|
|
|
|
pref("app.update.autodownload", "wifi");
|
|
|
|
|
2010-01-21 17:48:08 +00:00
|
|
|
#ifdef MOZ_UPDATER
|
2012-08-20 04:15:10 +00:00
|
|
|
/* prefs used specifically for updating the app */
|
2012-08-31 13:31:29 +00:00
|
|
|
pref("app.update.enabled", false);
|
2010-01-21 17:48:08 +00:00
|
|
|
pref("app.update.channel", "@MOZ_UPDATE_CHANNEL@");
|
|
|
|
|
2012-08-31 13:31:29 +00:00
|
|
|
// If you are looking for app.update.url, we no longer use it.
|
|
|
|
// See mobile/android/base/UpdateServiceHelper.java.in
|
2010-01-21 17:48:08 +00:00
|
|
|
#endif
|
2010-02-17 02:27:31 +00:00
|
|
|
|
|
|
|
// replace newlines with spaces on paste into single-line text boxes
|
|
|
|
pref("editor.singleLine.pasteNewlines", 2);
|
2010-03-07 18:03:58 +00:00
|
|
|
|
2010-11-18 19:36:46 +00:00
|
|
|
// threshold where a tap becomes a drag, in 1/240" reference pixels
|
2011-03-11 17:54:40 +00:00
|
|
|
// The names of the preferences are to be in sync with nsEventStateManager.cpp
|
|
|
|
pref("ui.dragThresholdX", 25);
|
|
|
|
pref("ui.dragThresholdY", 25);
|
2010-10-05 05:21:30 +00:00
|
|
|
|
2011-09-06 19:07:07 +00:00
|
|
|
pref("layers.acceleration.disabled", false);
|
2012-02-02 07:54:01 +00:00
|
|
|
pref("layers.offmainthreadcomposition.enabled", true);
|
2012-08-14 03:03:36 +00:00
|
|
|
pref("layers.async-video.enabled", true);
|
2012-10-25 21:11:12 +00:00
|
|
|
pref("layers.progressive-paint", true);
|
2012-11-21 22:34:20 +00:00
|
|
|
pref("layers.low-precision-buffer", true);
|
2012-12-05 17:10:41 +00:00
|
|
|
pref("layers.low-precision-resolution", 250);
|
2013-07-16 20:17:18 +00:00
|
|
|
// We want to limit layers for two reasons:
|
|
|
|
// 1) We can't scroll smoothly if we have to many draw calls
|
|
|
|
// 2) Pages that have too many layers consume too much memory and crash.
|
|
|
|
// By limiting the number of layers on mobile we're making the main thread
|
|
|
|
// work harder keep scrolling smooth and memory low.
|
|
|
|
pref("layers.max-active", 20);
|
2012-02-02 07:54:01 +00:00
|
|
|
|
2011-01-04 01:06:27 +00:00
|
|
|
pref("notification.feature.enabled", true);
|
2013-03-18 13:24:54 +00:00
|
|
|
pref("dom.webnotifications.enabled", true);
|
2011-01-05 19:02:00 +00:00
|
|
|
|
|
|
|
// prevent tooltips from showing up
|
|
|
|
pref("browser.chrome.toolbar_tips", false);
|
2011-04-29 23:47:40 +00:00
|
|
|
pref("dom.indexedDB.warningQuota", 5);
|
2011-02-15 04:43:35 +00:00
|
|
|
|
|
|
|
// prevent video elements from preloading too much data
|
|
|
|
pref("media.preload.default", 1); // default to preload none
|
|
|
|
pref("media.preload.auto", 2); // preload metadata if preload=auto
|
2011-02-17 20:09:00 +00:00
|
|
|
|
|
|
|
// optimize images memory usage
|
|
|
|
pref("image.mem.decodeondraw", true);
|
2011-06-22 18:16:09 +00:00
|
|
|
pref("image.mem.min_discard_timeout_ms", 10000);
|
2011-02-17 20:09:00 +00:00
|
|
|
|
2013-12-11 15:13:30 +00:00
|
|
|
#ifdef NIGHTLY_BUILD
|
|
|
|
// Shumway component (SWF player) is disabled by default. Also see bug 904346.
|
|
|
|
pref("shumway.disabled", true);
|
|
|
|
#endif
|
|
|
|
|
2011-03-21 18:20:34 +00:00
|
|
|
// enable touch events interfaces
|
2012-10-25 14:57:51 +00:00
|
|
|
pref("dom.w3c_touch_events.enabled", 1);
|
2011-03-21 18:20:34 +00:00
|
|
|
|
2011-04-26 19:39:21 +00:00
|
|
|
#ifdef MOZ_SAFE_BROWSING
|
2012-10-04 14:23:34 +00:00
|
|
|
pref("browser.safebrowsing.enabled", true);
|
|
|
|
pref("browser.safebrowsing.malware.enabled", true);
|
2012-09-24 20:34:27 +00:00
|
|
|
pref("browser.safebrowsing.debug", false);
|
|
|
|
|
2014-01-16 08:27:59 +00:00
|
|
|
pref("browser.safebrowsing.updateURL", "https://safebrowsing.google.com/safebrowsing/downloads?client=SAFEBROWSING_ID&appver=%VERSION%&pver=2.2&key=%GOOGLE_API_KEY%");
|
|
|
|
pref("browser.safebrowsing.gethashURL", "https://safebrowsing.google.com/safebrowsing/gethash?client=SAFEBROWSING_ID&appver=%VERSION%&pver=2.2");
|
|
|
|
pref("browser.safebrowsing.reportURL", "https://safebrowsing.google.com/safebrowsing/report?");
|
2012-09-24 20:34:27 +00:00
|
|
|
pref("browser.safebrowsing.reportGenericURL", "http://%LOCALE%.phish-generic.mozilla.com/?hl=%LOCALE%");
|
|
|
|
pref("browser.safebrowsing.reportErrorURL", "http://%LOCALE%.phish-error.mozilla.com/?hl=%LOCALE%");
|
|
|
|
pref("browser.safebrowsing.reportPhishURL", "http://%LOCALE%.phish-report.mozilla.com/?hl=%LOCALE%");
|
|
|
|
pref("browser.safebrowsing.reportMalwareURL", "http://%LOCALE%.malware-report.mozilla.com/?hl=%LOCALE%");
|
|
|
|
pref("browser.safebrowsing.reportMalwareErrorURL", "http://%LOCALE%.malware-error.mozilla.com/?hl=%LOCALE%");
|
|
|
|
|
2014-01-16 08:27:59 +00:00
|
|
|
pref("browser.safebrowsing.malware.reportURL", "https://safebrowsing.google.com/safebrowsing/diagnostic?client=%NAME%&hl=%LOCALE%&site=");
|
2011-04-26 19:39:21 +00:00
|
|
|
|
2013-01-10 07:38:50 +00:00
|
|
|
pref("browser.safebrowsing.id", @MOZ_APP_UA_NAME@);
|
|
|
|
|
2011-04-26 19:39:21 +00:00
|
|
|
// Name of the about: page contributed by safebrowsing to handle display of error
|
|
|
|
// pages on phishing/malware hits. (bug 399233)
|
|
|
|
pref("urlclassifier.alternate_error_page", "blocked");
|
|
|
|
|
|
|
|
// The number of random entries to send with a gethash request.
|
|
|
|
pref("urlclassifier.gethashnoise", 4);
|
|
|
|
|
|
|
|
// If an urlclassifier table has not been updated in this number of seconds,
|
|
|
|
// a gethash request will be forced to check that the result is still in
|
|
|
|
// the database.
|
2012-12-21 07:48:30 +00:00
|
|
|
pref("urlclassifier.max-complete-age", 2700);
|
2011-03-21 18:20:34 +00:00
|
|
|
#endif
|
|
|
|
|
2011-06-07 19:11:37 +00:00
|
|
|
// True if this is the first time we are showing about:firstrun
|
|
|
|
pref("browser.firstrun.show.uidiscovery", true);
|
2011-10-18 18:05:28 +00:00
|
|
|
pref("browser.firstrun.show.localepicker", false);
|
2011-06-07 19:11:37 +00:00
|
|
|
|
2011-08-02 17:34:58 +00:00
|
|
|
// True if you always want dump() to work
|
|
|
|
//
|
|
|
|
// On Android, you also need to do the following for the output
|
|
|
|
// to show up in logcat:
|
|
|
|
//
|
|
|
|
// $ adb shell stop
|
|
|
|
// $ adb shell setprop log.redirect-stdio true
|
|
|
|
// $ adb shell start
|
2011-10-11 00:40:17 +00:00
|
|
|
pref("browser.dom.window.dump.enabled", true);
|
2011-09-27 00:25:41 +00:00
|
|
|
|
2013-05-03 00:52:54 +00:00
|
|
|
// SimplePush
|
|
|
|
pref("services.push.enabled", false);
|
|
|
|
|
2011-09-27 00:25:41 +00:00
|
|
|
// controls if we want camera support
|
|
|
|
pref("device.camera.enabled", true);
|
|
|
|
pref("media.realtime_decoder.enabled", true);
|
2011-10-11 06:19:56 +00:00
|
|
|
|
|
|
|
pref("dom.report_all_js_exceptions", true);
|
|
|
|
pref("javascript.options.showInConsole", true);
|
2011-11-08 18:36:04 +00:00
|
|
|
|
|
|
|
pref("full-screen-api.enabled", true);
|
2012-01-19 01:41:28 +00:00
|
|
|
|
|
|
|
pref("direct-texture.force.enabled", false);
|
|
|
|
pref("direct-texture.force.disabled", false);
|
2012-04-10 10:05:45 +00:00
|
|
|
|
2012-04-13 14:29:14 +00:00
|
|
|
// This fraction in 1000ths of velocity remains after every animation frame when the velocity is low.
|
|
|
|
pref("ui.scrolling.friction_slow", -1);
|
|
|
|
// This fraction in 1000ths of velocity remains after every animation frame when the velocity is high.
|
|
|
|
pref("ui.scrolling.friction_fast", -1);
|
|
|
|
// The maximum velocity change factor between events, per ms, in 1000ths.
|
|
|
|
// Direction changes are excluded.
|
|
|
|
pref("ui.scrolling.max_event_acceleration", -1);
|
|
|
|
// The rate of deceleration when the surface has overscrolled, in 1000ths.
|
|
|
|
pref("ui.scrolling.overscroll_decel_rate", -1);
|
|
|
|
// The fraction of the surface which can be overscrolled before it must snap back, in 1000ths.
|
|
|
|
pref("ui.scrolling.overscroll_snap_limit", -1);
|
|
|
|
// The minimum amount of space that must be present for an axis to be considered scrollable,
|
|
|
|
// in 1/1000ths of pixels.
|
|
|
|
pref("ui.scrolling.min_scrollable_distance", -1);
|
2013-04-14 13:27:02 +00:00
|
|
|
// The axis lock mode for panning behaviour - set between standard, free and sticky
|
|
|
|
pref("ui.scrolling.axis_lock_mode", "standard");
|
2013-08-28 01:01:40 +00:00
|
|
|
// Negate scrollY, true will make the mouse scroll wheel move the screen the same direction as with most desktops or laptops.
|
|
|
|
pref("ui.scrolling.negate_wheel_scrollY", true);
|
2013-09-05 01:58:40 +00:00
|
|
|
// Determine the dead zone for gamepad joysticks. Higher values result in larger dead zones; use a negative value to
|
|
|
|
// auto-detect based on reported hardware values
|
|
|
|
pref("ui.scrolling.gamepad_dead_zone", 10);
|
2013-04-14 13:27:02 +00:00
|
|
|
|
2012-05-05 06:46:16 +00:00
|
|
|
|
|
|
|
// Enable accessibility mode if platform accessibility is enabled.
|
2012-05-18 18:56:38 +00:00
|
|
|
pref("accessibility.accessfu.activate", 2);
|
2013-07-11 20:42:11 +00:00
|
|
|
pref("accessibility.accessfu.quicknav_modes", "Link,Heading,FormElement,Landmark,ListItem");
|
2013-04-04 22:16:37 +00:00
|
|
|
// Setting for an utterance order (0 - description first, 1 - description last).
|
2013-07-10 14:25:57 +00:00
|
|
|
pref("accessibility.accessfu.utterance", 1);
|
2013-06-17 20:25:24 +00:00
|
|
|
// Whether to skip images with empty alt text
|
|
|
|
pref("accessibility.accessfu.skip_empty_images", true);
|
2012-05-11 10:57:07 +00:00
|
|
|
|
2013-07-11 15:39:36 +00:00
|
|
|
// Transmit UDP busy-work to the LAN when anticipating low latency
|
|
|
|
// network reads and on wifi to mitigate 802.11 Power Save Polling delays
|
|
|
|
pref("network.tickle-wifi.enabled", true);
|
|
|
|
|
2012-05-11 10:57:07 +00:00
|
|
|
// Mobile manages state by autodetection
|
|
|
|
pref("network.manage-offline-status", true);
|
2012-06-12 01:44:45 +00:00
|
|
|
|
|
|
|
// increase the timeout clamp for background tabs to 15 minutes
|
|
|
|
pref("dom.min_background_timeout_value", 900000);
|
2012-06-20 17:12:13 +00:00
|
|
|
|
2013-05-06 16:19:23 +00:00
|
|
|
// The default state of reader mode works on loaded a page.
|
|
|
|
pref("reader.parse-on-load.enabled", true);
|
|
|
|
|
|
|
|
// Force to enable reader mode to parse on loaded a page.
|
2013-05-01 14:49:42 +00:00
|
|
|
// Allow reader mode even on low-memory platforms
|
2013-05-06 16:19:23 +00:00
|
|
|
pref("reader.parse-on-load.force-enabled", false);
|
2013-05-01 14:49:42 +00:00
|
|
|
|
2013-05-14 21:55:43 +00:00
|
|
|
// The default of font size in reader (1-5)
|
|
|
|
pref("reader.font_size", 3);
|
2012-06-20 17:12:13 +00:00
|
|
|
|
2013-05-13 02:24:35 +00:00
|
|
|
// The default color scheme in reader (light, dark, sepia, auto)
|
|
|
|
// auto = color automatically adjusts according to ambient light level
|
|
|
|
pref("reader.color_scheme", "auto");
|
2012-07-26 09:48:52 +00:00
|
|
|
|
2013-04-16 17:39:16 +00:00
|
|
|
// The font type in reader (sans-serif, serif)
|
|
|
|
pref("reader.font_type", "sans-serif");
|
|
|
|
|
2012-07-26 09:48:52 +00:00
|
|
|
// Used to show a first-launch tip in reader
|
2012-08-07 16:49:30 +00:00
|
|
|
pref("reader.has_used_toolbar", false);
|
2012-08-09 19:54:36 +00:00
|
|
|
|
2012-08-10 08:15:16 +00:00
|
|
|
// Media plugins for libstagefright playback on android
|
2012-08-15 18:00:39 +00:00
|
|
|
pref("media.plugins.enabled", true);
|
2012-08-10 08:15:16 +00:00
|
|
|
|
2012-08-24 21:20:39 +00:00
|
|
|
// Stagefright's OMXCodec::CreationFlags. The interesting flag values are:
|
|
|
|
// 0 = Let Stagefright choose hardware or software decoding (default)
|
|
|
|
// 8 = Force software decoding
|
|
|
|
// 16 = Force hardware decoding
|
|
|
|
pref("media.stagefright.omxcodec.flags", 0);
|
|
|
|
|
2012-08-09 19:54:36 +00:00
|
|
|
// Coalesce touch events to prevent them from flooding the event queue
|
2012-10-19 15:18:01 +00:00
|
|
|
pref("dom.event.touch.coalescing.enabled", false);
|
2012-08-20 17:28:40 +00:00
|
|
|
|
|
|
|
// default orientation for the app, default to undefined
|
|
|
|
// the java GeckoScreenOrientationListener needs this to be defined
|
|
|
|
pref("app.orientation.default", "");
|
2012-11-26 16:02:47 +00:00
|
|
|
|
|
|
|
// On memory pressure, release dirty but unused pages held by jemalloc
|
|
|
|
// back to the system.
|
|
|
|
pref("memory.free_dirty_pages", true);
|
2013-02-13 23:26:24 +00:00
|
|
|
|
2013-09-24 06:30:27 +00:00
|
|
|
pref("layout.imagevisibility.enabled", true);
|
2013-09-15 18:51:35 +00:00
|
|
|
pref("layout.imagevisibility.numscrollportwidths", 1);
|
|
|
|
pref("layout.imagevisibility.numscrollportheights", 1);
|
2013-02-25 00:59:24 +00:00
|
|
|
|
2013-12-17 14:02:16 +00:00
|
|
|
pref("layers.enable-tiles", true);
|
2013-09-10 18:21:37 +00:00
|
|
|
|
2013-03-12 18:32:26 +00:00
|
|
|
// Enable the dynamic toolbar
|
|
|
|
pref("browser.chrome.dynamictoolbar", true);
|
2013-03-07 10:17:34 +00:00
|
|
|
|
2013-05-14 12:29:31 +00:00
|
|
|
// The mode of browser titlebar
|
|
|
|
// 0: Show a current page title.
|
|
|
|
// 1: Show a current page url.
|
|
|
|
pref("browser.chrome.titlebarMode", 0);
|
|
|
|
|
2013-10-26 16:18:55 +00:00
|
|
|
// Hide common parts of URLs like "www." or "http://"
|
|
|
|
pref("browser.urlbar.trimURLs", true);
|
|
|
|
|
2013-02-13 23:26:24 +00:00
|
|
|
#ifdef MOZ_PKG_SPECIAL
|
|
|
|
// Disable webgl on ARMv6 because running the reftests takes
|
|
|
|
// too long for some reason (bug 843738)
|
|
|
|
pref("webgl.disabled", true);
|
|
|
|
#endif
|
2013-04-03 00:36:04 +00:00
|
|
|
|
2013-04-03 19:34:51 +00:00
|
|
|
// initial web feed readers list
|
|
|
|
pref("browser.contentHandlers.types.0.title", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.0.uri", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.0.type", "application/vnd.mozilla.maybe.feed");
|
|
|
|
pref("browser.contentHandlers.types.1.title", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.1.uri", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.1.type", "application/vnd.mozilla.maybe.feed");
|
|
|
|
pref("browser.contentHandlers.types.2.title", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.2.uri", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.2.type", "application/vnd.mozilla.maybe.feed");
|
|
|
|
pref("browser.contentHandlers.types.3.title", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.3.uri", "chrome://browser/locale/region.properties");
|
|
|
|
pref("browser.contentHandlers.types.3.type", "application/vnd.mozilla.maybe.feed");
|
|
|
|
|
2013-09-27 18:38:14 +00:00
|
|
|
// WebPayment
|
|
|
|
pref("dom.mozPay.enabled", true);
|
|
|
|
|
2013-06-06 23:02:49 +00:00
|
|
|
#ifndef RELEASE_BUILD
|
2013-04-25 22:29:17 +00:00
|
|
|
pref("dom.payment.provider.0.name", "Firefox Marketplace");
|
|
|
|
pref("dom.payment.provider.0.description", "marketplace.firefox.com");
|
|
|
|
pref("dom.payment.provider.0.uri", "https://marketplace.firefox.com/mozpay/?req=");
|
|
|
|
pref("dom.payment.provider.0.type", "mozilla/payments/pay/v1");
|
|
|
|
pref("dom.payment.provider.0.requestMethod", "GET");
|
2013-06-06 23:02:49 +00:00
|
|
|
#endif
|
2013-04-25 22:29:17 +00:00
|
|
|
|
2013-07-18 22:01:00 +00:00
|
|
|
// Shortnumber matching needed for e.g. Brazil:
|
|
|
|
// 01187654321 can be found with 87654321
|
|
|
|
pref("dom.phonenumber.substringmatching.BR", 8);
|
|
|
|
pref("dom.phonenumber.substringmatching.CO", 10);
|
|
|
|
pref("dom.phonenumber.substringmatching.VE", 7);
|
|
|
|
|
2013-07-01 21:46:30 +00:00
|
|
|
// Support for the mozAudioChannel attribute on media elements is disabled in non-webapps
|
|
|
|
pref("media.useAudioChannelService", false);
|
2013-06-26 00:08:58 +00:00
|
|
|
|
|
|
|
// Turn on the CSP 1.0 parser for Content Security Policy headers
|
|
|
|
pref("security.csp.speccompliant", true);
|
2013-07-19 18:03:46 +00:00
|
|
|
|
|
|
|
// Enable hardware-accelerated Skia canvas
|
|
|
|
pref("gfx.canvas.azure.backends", "skia");
|
|
|
|
pref("gfx.canvas.azure.accelerated", true);
|
2013-07-27 14:18:25 +00:00
|
|
|
|
|
|
|
pref("general.useragent.override.youtube.com", "Android; Tablet;#Android; Mobile;");
|
2013-08-20 20:41:58 +00:00
|
|
|
|
|
|
|
// When true, phone number linkification is enabled.
|
|
|
|
pref("browser.ui.linkify.phone", false);
|
2013-09-12 22:46:35 +00:00
|
|
|
|
2013-10-12 17:59:50 +00:00
|
|
|
// Enables/disables Spatial Navigation
|
|
|
|
pref("snav.enabled", true);
|
2013-11-23 00:55:33 +00:00
|
|
|
|
2013-12-17 23:14:56 +00:00
|
|
|
// URL to fetch about:accounts web content from.
|
|
|
|
pref("firefox.accounts.remoteUrl", "https://accounts.dev.lcip.org/mobile");
|
|
|
|
|
2013-11-23 00:55:33 +00:00
|
|
|
// This url, if changed, MUST continue to point to an https url. Pulling arbitrary content to inject into
|
|
|
|
// this page over http opens us up to a man-in-the-middle attack that we'd rather not face. If you are a downstream
|
|
|
|
// repackager of this code using an alternate snippet url, please keep your users safe
|
|
|
|
pref("browser.snippets.updateUrl", "https://snippets.mozilla.com/json/%SNIPPETS_VERSION%/%NAME%/%VERSION%/%APPBUILDID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/");
|
|
|
|
|
|
|
|
// How frequently we check for new snippets, in seconds (1 day)
|
|
|
|
pref("browser.snippets.updateInterval", 86400);
|
|
|
|
|
|
|
|
// URL used to check for user's country code
|
|
|
|
pref("browser.snippets.geoUrl", "https://geo.mozilla.org/country.json");
|
|
|
|
|
2013-12-03 00:54:21 +00:00
|
|
|
// URL used to ping metrics with stats about which snippets have been shown
|
|
|
|
pref("browser.snippets.statsUrl", "https://snippets-stats.mozilla.org/mobile");
|
|
|
|
|
2014-01-18 00:08:44 +00:00
|
|
|
// These prefs require a restart to take effect.
|
2013-11-23 00:55:33 +00:00
|
|
|
pref("browser.snippets.enabled", false);
|
2014-01-18 00:08:44 +00:00
|
|
|
pref("browser.snippets.syncPromo.enabled", false);
|
2014-01-09 18:18:55 +00:00
|
|
|
|
|
|
|
#ifdef MOZ_ANDROID_SYNTHAPKS
|
|
|
|
// The URL of the APK factory from which we obtain APKs for webapps.
|
2014-01-18 03:16:25 +00:00
|
|
|
// This currently points to the development server.
|
|
|
|
pref("browser.webapps.apkFactoryUrl", "http://dapk.net/application.apk");
|
2014-01-09 18:18:55 +00:00
|
|
|
#endif
|