Bug 787873 dom.identity.enabled pref missing from about:config (Port Bug 784602). r=IanN

Also includes comments only change from Bug 735877 Update syntax hints in pref files to reflect the fact that you can't use computed values (e.g. 50 * 1024)
This commit is contained in:
Philip Chee 2012-09-04 12:12:35 +08:00
Родитель e9e8a6fd9b
Коммит 59caa9de82
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -8,6 +8,15 @@
* modules/libpref/src/init/all.js
*/
/* filter substitution
*
* SYNTAX HINTS:
*
* - Dashes are delimiters; use underscores instead.
* - The first character after a period must be alphabetic.
* - Computed values (e.g. 50 * 1024) don't work.
*/
pref("startup.homepage_override_url","chrome://navigator-region/locale/region.properties");
pref("general.skins.selectedSkin", "classic/1.0");
@ -670,6 +679,8 @@ pref("dom.disable_window_flip", true);
// prevent JS from disabling or replacing context menus
pref("dom.event.contextmenu.enabled", true);
pref("dom.identity.enabled", false);
// The default for this pref reflects whether the build is capable of IPC.
// (Turning it on in a no-IPC build will have no effect.)
#ifdef XP_MACOSX