Bug 1038254 - Disable memory-mapped array buffers on Windows. r=fabrice

This commit is contained in:
J. Ryan Stinnett 2014-07-16 19:02:00 -04:00
parent 0020594bb5
commit 9a8676809e
2 changed files with 6 additions and 1 deletions

View File

@ -1015,5 +1015,7 @@ pref("identity.fxaccounts.enabled", true);
// Mobile Identity API.
pref("services.mobileid.server.uri", "https://msisdn.services.mozilla.com");
// Enable mapped array buffer
// Enable mapped array buffer.
#ifndef XP_WIN
pref("dom.mapped_arraybuffer.enabled", true);
#endif

View File

@ -4235,6 +4235,9 @@ pref("dom.voicemail.defaultServiceId", 0);
// DOM Inter-App Communication API.
pref("dom.inter-app-communication-api.enabled", false);
// Disable mapped array buffer by default.
pref("dom.mapped_arraybuffer.enabled", false);
// The tables used for Safebrowsing phishing and malware checks.
pref("urlclassifier.malwareTable", "goog-malware-shavar,test-malware-simple");
pref("urlclassifier.phishTable", "goog-phish-shavar,test-phish-simple");