| OLD | NEW |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | 4 |
| 5 #filter substitution | 5 #filter substitution |
| 6 | 6 |
| 7 // For browser.xml binding | 7 // For browser.xml binding |
| 8 // | 8 // |
| 9 // cacheRatio* is a ratio that determines the amount of pixels to cache. The | 9 // cacheRatio* is a ratio that determines the amount of pixels to cache. The |
| 10 // ratio is multiplied by the viewport width or height to get the displayport's | 10 // ratio is multiplied by the viewport width or height to get the displayport's |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 /* new html5 forms */ | 192 /* new html5 forms */ |
| 193 pref("dom.experimental_forms", true); | 193 pref("dom.experimental_forms", true); |
| 194 pref("dom.forms.number", true); | 194 pref("dom.forms.number", true); |
| 195 | 195 |
| 196 /* extension manager and xpinstall */ | 196 /* extension manager and xpinstall */ |
| 197 pref("xpinstall.whitelist.directRequest", false); | 197 pref("xpinstall.whitelist.directRequest", false); |
| 198 pref("xpinstall.whitelist.fileRequest", false); | 198 pref("xpinstall.whitelist.fileRequest", false); |
| 199 pref("xpinstall.whitelist.add", "https://addons.mozilla.org,https://testpilot.fi
refox.com"); | 199 pref("xpinstall.whitelist.add", "https://addons.mozilla.org,https://testpilot.fi
refox.com"); |
| 200 | 200 |
| 201 pref("xpinstall.signatures.required", true); | 201 // Changed back to false. See https://issues.adblockplus.org/ticket/5489 |
| 202 pref("xpinstall.signatures.required", false); |
| 202 | 203 |
| 203 pref("extensions.enabledScopes", 4); | 204 pref("extensions.enabledScopes", 4); |
| 204 pref("extensions.autoupdate.enabled", true); | 205 pref("extensions.autoupdate.enabled", true); |
| 205 pref("extensions.autoupdate.interval", 86400); | 206 pref("extensions.autoupdate.interval", 86400); |
| 206 pref("extensions.update.enabled", true); | 207 pref("extensions.update.enabled", true); |
| 207 pref("extensions.update.interval", 86400); | 208 pref("extensions.update.interval", 86400); |
| 208 pref("extensions.dss.enabled", false); | 209 pref("extensions.dss.enabled", false); |
| 209 pref("extensions.dss.switchPending", false); | 210 pref("extensions.dss.switchPending", false); |
| 210 pref("extensions.ignoreMTimeChanges", false); | 211 pref("extensions.ignoreMTimeChanges", false); |
| 211 pref("extensions.logging.enabled", false); | 212 pref("extensions.logging.enabled", false); |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 #endif | 941 #endif |
| 941 | 942 |
| 942 pref("dom.audiochannel.audioCompeting", true); | 943 pref("dom.audiochannel.audioCompeting", true); |
| 943 pref("dom.audiochannel.mediaControl", true); | 944 pref("dom.audiochannel.mediaControl", true); |
| 944 | 945 |
| 945 // Space separated list of URLS that are allowed to send objects (instead of | 946 // Space separated list of URLS that are allowed to send objects (instead of |
| 946 // only strings) through webchannels. This list is duplicated in browser/app/pro
file/firefox.js | 947 // only strings) through webchannels. This list is duplicated in browser/app/pro
file/firefox.js |
| 947 pref("webchannel.allowObject.urlWhitelist", "https://accounts.firefox.com https:
//content.cdn.mozilla.net https://input.mozilla.org https://support.mozilla.org
https://install.mozilla.org"); | 948 pref("webchannel.allowObject.urlWhitelist", "https://accounts.firefox.com https:
//content.cdn.mozilla.net https://input.mozilla.org https://support.mozilla.org
https://install.mozilla.org"); |
| 948 | 949 |
| 949 pref("media.openUnsupportedTypeWithExternalApp", true); | 950 pref("media.openUnsupportedTypeWithExternalApp", true); |
| OLD | NEW |