diff options
author | Moonchild <moonchild@palemoon.org> | 2021-01-06 23:57:26 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-01-06 23:57:26 +0000 |
commit | 65da2431f9ee9711e971002ae17043c1a3d36a3f (patch) | |
tree | c461f5694d915ce1dfa5151f2d655162afbf4c81 /modules | |
parent | 0e6a9cc60aeb754e00e466ce20052d2fa9ccb7f9 (diff) | |
download | uxp-65da2431f9ee9711e971002ae17043c1a3d36a3f.tar.gz |
Issue #1705 - Part 4: Add scrollbar-width CSS keyword to CSS parser.
This should be all parts needed to add a brand new enum keyword including
getting the computed style from it...
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index b6af988638..cddca5c074 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2483,6 +2483,9 @@ pref("layout.css.isolation.enabled", true); // Is support for CSS Filters enabled? pref("layout.css.filters.enabled", true); +// Is support for scrollbar-width property enabled? +pref("layout.css.scrollbar-width.enabled", false); + // Set the threshold distance in CSS pixels below which scrolling will snap to // an edge, when scroll snapping is set to "proximity". pref("layout.css.scroll-snap.proximity-threshold", 200); |