add pref for en/disabling CSS Animations and Transitions.

This commit is contained in:
roytam1 2023-08-18 09:57:41 +08:00
commit 864fc133a3
2 changed files with 8 additions and 2 deletions

View file

@ -2489,6 +2489,12 @@ pref("layout.css.isolation.enabled", true);
// Is support for CSS Filters enabled?
pref("layout.css.filters.enabled", true);
// Is support for CSS Animation enabled?
pref("layout.css.animation.enabled", true);
// Is support for CSS Transition enabled?
pref("layout.css.transition.enabled", true);
// Is support for scrollbar-width property enabled?
pref("layout.css.scrollbar-width.enabled", true);