diff options
author | Moonchild <moonchild@palemoon.org> | 2021-01-14 16:05:53 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-01-14 16:05:53 +0000 |
commit | 407c86641a77a7d95db5f31b14f9f9f10c79d1e3 (patch) | |
tree | 8f5fd1a3ad9e556e6f8ee59229bd1fd3ed1f67e8 /modules | |
parent | b0fe759f033f36a9a85afd7cc358b4800def5013 (diff) | |
download | uxp-407c86641a77a7d95db5f31b14f9f9f10c79d1e3.tar.gz |
Issue #1689 - Part 2: Add a preference for implicit keyframes
This preference controls whether authors are allowed to specify animations
without a 0% or 100% keyframe.
We intend to ship this but it isn't implemented yet (needs a follow-up) but this
preference acts as a safeguard in case we discover we need to disable it once
it's implemented.
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 a81f3ba558..a4ebdde3ed 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2719,6 +2719,7 @@ pref("dom.animations-api.core.enabled", false); pref("dom.animations-api.core.enabled", true); #endif pref("dom.animations-api.timelines.enabled", false); +pref("dom.animations-api.implicit-keyframes.enabled", false); // Is support for the Element.animate() function (a subset of the Web Animations // API) enabled? |