Bug 1430744: Stop processing native events in the content process on Windows in Nightly. r=jimm

This commit is contained in:
Bob Owen 2018-01-16 11:21:59 +00:00
parent ded13b5888
commit 070abbefc8

View File

@ -3343,8 +3343,12 @@ pref("dom.ipc.processCount.file", 1);
// WebExtensions only support a single extension process.
pref("dom.ipc.processCount.extension", 1);
// Don't use a native event loop in the content process.
// Whether a native event loop should be used in the content process.
#if defined(XP_WIN) && defined(NIGHTLY_BUILD)
pref("dom.ipc.useNativeEventProcessing.content", false);
#else
pref("dom.ipc.useNativeEventProcessing.content", true);
#endif
// Quantum DOM scheduling:
pref("dom.ipc.scheduler", false);