mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1038254 - Disable memory-mapped array buffers on Windows. r=fabrice
This commit is contained in:
parent
0020594bb5
commit
9a8676809e
@ -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
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user