summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2023-08-30 10:52:52 +0200
committerMoonchild <moonchild@palemoon.org>2023-08-30 10:52:52 +0200
commit45ec6b3a8663995e2f0049436add2dfbe214071e (patch)
tree07d4aa5b421bdf99f3d908fa839bf60d97336458 /modules
parentac24db13efafdd2a973cd11e70f3ad7e2e93b233 (diff)
downloaduxp-45ec6b3a8663995e2f0049436add2dfbe214071e.tar.gz
Issue #2293 - Add preferences to disable CSS animation/transition props.
This resolves #2293
Diffstat (limited to 'modules')
-rw-r--r--modules/libpref/init/all.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index 267cb39d6d..9aada9bb90 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -2448,6 +2448,12 @@ pref("layout.css.mix-blend-mode.enabled", true);
// Is support for isolation enabled?
pref("layout.css.isolation.enabled", true);
+// Is support for CSS animation properties enabled?
+pref("layout.css.animation.enabled", true);
+
+// Is support for CSS transition properties enabled?
+pref("layout.css.transition.enabled", true);
+
// Is support for CSS Filters enabled?
pref("layout.css.filters.enabled", true);