From 289a5bff70401dbf4db665ed16c2be52881ed1d8 Mon Sep 17 00:00:00 2001 From: Masayuki Nakano Date: Tue, 20 Nov 2018 12:58:58 +0000 Subject: [PATCH] Bug 1508503 - Remove medium.com from "dom.keyboardevent.keypress.hack.dispatch_non_printable_keys" r=smaug Bug 1483553 was fixed by the developers of medium.com so that we can remove medium.com from the blacklist which prevents strict keypress dispatching on specific websites. Differential Revision: https://phabricator.services.mozilla.com/D12398 --HG-- extra : moz-landing-system : lando --- modules/libpref/init/all.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 424831260552..2d650353b591 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -228,8 +228,7 @@ pref("dom.keyboardevent.keypress.dispatch_non_printable_keys_only_system_group_i // can limit the path. E.g., "example.com/foo" means "example.com/foo*". So, // if you need to limit under a directory, the path should end with "/" like // "example.com/foo/". Note that this cannot limit port number for now. -pref("dom.keyboardevent.keypress.hack.dispatch_non_printable_keys", - "medium.com/p/"); +pref("dom.keyboardevent.keypress.hack.dispatch_non_printable_keys", ""); #else pref("dom.keyboardevent.keypress.dispatch_non_printable_keys_only_system_group_in_content", false); #endif