Bug 1253476 - Turn on auto-removing behavior by default in Nightly; r=boris

Differential Revision: https://phabricator.services.mozilla.com/D30328

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Brian Birtles 2019-05-20 05:22:42 +00:00
parent 2f6180dd9e
commit 1acaba034d

View File

@ -128,11 +128,17 @@ VARCACHE_PREF(
//---------------------------------------------------------------------------
// Is support for automatically removing replaced filling animations enabled?
#ifdef RELEASE_OR_BETA
# define PREF_VALUE false
#else
# define PREF_VALUE true
#endif
VARCACHE_PREF(
"dom.animations-api.autoremove.enabled",
dom_animations_api_autoremove_enabled,
bool, false
bool, PREF_VALUE
)
#undef PREF_VALUE
// Is support for composite operations from the Web Animations API enabled?
#ifdef RELEASE_OR_BETA