Bug 1041833 - Enable CSSOM-View smooth scrolling for Android r=snorp

This commit is contained in:
Randall Barker 2015-12-11 11:20:02 -05:00
parent 66937e4c8a
commit 584e16c286

View File

@ -3655,8 +3655,13 @@ pref("print.print_paper_size", 0);
pref("print.print_extra_margin", 0); // twips
// CSSOM-View scroll-behavior smooth scrolling requires the C++ APZC
#ifdef MOZ_ANDROID_APZ
pref("layout.css.scroll-behavior.enabled", true);
pref("layout.css.scroll-behavior.property-enabled", true);
#else
pref("layout.css.scroll-behavior.enabled", false);
pref("layout.css.scroll-behavior.property-enabled", false);
#endif
// CSS Scroll Snapping requires the C++ APZC
pref("layout.css.scroll-snap.enabled", false);