diff options
author | Moonchild <moonchild@palemoon.org> | 2021-01-14 17:43:44 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-01-14 17:43:44 +0000 |
commit | abc58d2ed0fd7739b31be78d6338ae79206ce879 (patch) | |
tree | b44936cf95aea75ecb8de43d17f46967929f7bfd /modules | |
parent | 931314ef61ce982ac4bae782c67477d48028fc56 (diff) | |
download | uxp-abc58d2ed0fd7739b31be78d6338ae79206ce879.tar.gz |
Issue #1689 - Part 4: Add a preference for {Document,Element}.getAnimations()
This is probably the last thing we will ship (if ever) since it needs the most
spec and implementation work for arbitrary use that is pretty far into a corner.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 3319045e74..a8799f69af 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2710,17 +2710,16 @@ pref("layout.idle_period.required_quiescent_frames", 2); pref("layout.idle_period.time_limit", 1); // Is support for the Web Animations API enabled? -// Before enabling this by default, make sure also CSSPseudoElement interface -// has been spec'ed properly, or we should add a separate pref for -// CSSPseudoElement interface. See Bug 1174575 for further details. #ifdef RELEASE_OR_BETA pref("dom.animations-api.core.enabled", false); #else pref("dom.animations-api.core.enabled", true); #endif + pref("dom.animations-api.timelines.enabled", false); pref("dom.animations-api.implicit-keyframes.enabled", false); pref("dom.animations-api.compositing.enabled", false); +pref("dom.animations-api.getAnimations.enabled", false); // Is support for the Element.animate() function (a subset of the Web Animations // API) enabled? |