diff options
author | Moonchild <moonchild@palemoon.org> | 2021-01-14 17:17:28 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-01-14 17:41:30 +0000 |
commit | 931314ef61ce982ac4bae782c67477d48028fc56 (patch) | |
tree | e6198d4bd0cd2643394960d38026b644b1bdd273 /modules | |
parent | 407c86641a77a7d95db5f31b14f9f9f10c79d1e3 (diff) | |
download | uxp-931314ef61ce982ac4bae782c67477d48028fc56.tar.gz |
Issue #1689 - Part 3: Add a preference for animation composite modes.
This feature should not be shipped until the various definitions of addition for
each additive property are properly specified and then implemented accordingly.
Unlike other patches in this series, compositing is not frequently used
internally so there is no need to enable this by default for chrome callers.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index a4ebdde3ed..3319045e74 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2720,6 +2720,7 @@ 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); // Is support for the Element.animate() function (a subset of the Web Animations // API) enabled? |