mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1138658 - Enable CSS Scroll Snapping by default on Desktop. r=roc
- The layout.css.scroll-snap.enabled preference is now enabled on all platforms, except for Android.
This commit is contained in:
parent
274c2ac6a3
commit
5f87d8a230
@ -2101,9 +2101,6 @@ pref("layout.css.isolation.enabled", true);
|
||||
// Is support for CSS Filters enabled?
|
||||
pref("layout.css.filters.enabled", true);
|
||||
|
||||
// Is support for scroll-snap enabled?
|
||||
pref("layout.css.scroll-snap.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);
|
||||
@ -2253,6 +2250,9 @@ pref("layout.css.scroll-behavior.spring-constant", "250.0");
|
||||
// at the greatest speed without overshooting.
|
||||
pref("layout.css.scroll-behavior.damping-ratio", "1.0");
|
||||
|
||||
// Is support for scroll-snap enabled?
|
||||
pref("layout.css.scroll-snap.enabled", true);
|
||||
|
||||
// Is support for document.fonts enabled?
|
||||
//
|
||||
// Don't enable the pref for the CSS Font Loading API until bug 1072101 is
|
||||
@ -3422,6 +3422,9 @@ pref("print.print_extra_margin", 0); // twips
|
||||
pref("layout.css.scroll-behavior.enabled", false);
|
||||
pref("layout.css.scroll-behavior.property-enabled", false);
|
||||
|
||||
// CSS Scroll Snapping requires the C++ APZC
|
||||
pref("layout.css.scroll-snap.enabled", false);
|
||||
|
||||
/* PostScript print module prefs */
|
||||
// pref("print.postscript.enabled", true);
|
||||
pref("print.postscript.paper_size", "letter");
|
||||
|
Loading…
Reference in New Issue
Block a user