OLD | NEW |
1 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ | 1 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ |
2 /* This Source Code Form is subject to the terms of the Mozilla Public | 2 /* This Source Code Form is subject to the terms of the Mozilla Public |
3 * License, v. 2.0. If a copy of the MPL was not distributed with this | 3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 | 5 |
6 /* The prefs in this file are shipped with the GRE and should apply to all | 6 /* The prefs in this file are shipped with the GRE and should apply to all |
7 * embedding situations. Application-specific preferences belong somewhere else, | 7 * embedding situations. Application-specific preferences belong somewhere else, |
8 * for example xpfe/bootstrap/browser-prefs.js | 8 * for example xpfe/bootstrap/browser-prefs.js |
9 * | 9 * |
10 * Platform-specific #ifdefs at the end of this file override the generic | 10 * Platform-specific #ifdefs at the end of this file override the generic |
(...skipping 4376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4387 pref("browser.history.allowPushState", true); | 4387 pref("browser.history.allowPushState", true); |
4388 pref("browser.history.allowReplaceState", true); | 4388 pref("browser.history.allowReplaceState", true); |
4389 pref("browser.history.allowPopState", true); | 4389 pref("browser.history.allowPopState", true); |
4390 pref("browser.history.maxStateObjectSize", 655360); | 4390 pref("browser.history.maxStateObjectSize", 655360); |
4391 | 4391 |
4392 // XPInstall prefs | 4392 // XPInstall prefs |
4393 pref("xpinstall.whitelist.required", true); | 4393 pref("xpinstall.whitelist.required", true); |
4394 // Only Firefox requires add-on signatures | 4394 // Only Firefox requires add-on signatures |
4395 pref("xpinstall.signatures.required", false); | 4395 pref("xpinstall.signatures.required", false); |
4396 pref("extensions.alwaysUnpack", false); | 4396 pref("extensions.alwaysUnpack", false); |
4397 pref("extensions.minCompatiblePlatformVersion", "2.0"); | 4397 // Changed min compat version. See https://issues.adblockplus.org/ticket/4765 |
| 4398 pref("extensions.minCompatiblePlatformVersion", "1.0"); |
4398 | 4399 |
4399 pref("network.buffer.cache.count", 24); | 4400 pref("network.buffer.cache.count", 24); |
4400 pref("network.buffer.cache.size", 32768); | 4401 pref("network.buffer.cache.size", 32768); |
4401 | 4402 |
4402 // Desktop Notification | 4403 // Desktop Notification |
4403 pref("notification.feature.enabled", false); | 4404 pref("notification.feature.enabled", false); |
4404 | 4405 |
4405 // Web Notification | 4406 // Web Notification |
4406 pref("dom.webnotifications.enabled", true); | 4407 pref("dom.webnotifications.enabled", true); |
4407 #if !defined(RELEASE_BUILD) | 4408 #if !defined(RELEASE_BUILD) |
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5106 pref("dom.requestcache.enabled", false); | 5107 pref("dom.requestcache.enabled", false); |
5107 | 5108 |
5108 // Expose Request.context. Currently disabled since the spec is in flux. | 5109 // Expose Request.context. Currently disabled since the spec is in flux. |
5109 pref("dom.requestcontext.enabled", false); | 5110 pref("dom.requestcontext.enabled", false); |
5110 | 5111 |
5111 pref("dom.mozKillSwitch.enabled", false); | 5112 pref("dom.mozKillSwitch.enabled", false); |
5112 | 5113 |
5113 pref("toolkit.pageThumbs.screenSizeDivisor", 7); | 5114 pref("toolkit.pageThumbs.screenSizeDivisor", 7); |
5114 pref("toolkit.pageThumbs.minWidth", 0); | 5115 pref("toolkit.pageThumbs.minWidth", 0); |
5115 pref("toolkit.pageThumbs.minHeight", 0); | 5116 pref("toolkit.pageThumbs.minHeight", 0); |
OLD | NEW |