Title: [258135] releases/WebKitGTK/webkit-2.28/Source/WebKit
Revision
258135
Author
[email protected]
Date
2020-03-09 06:42:33 -0700 (Mon, 09 Mar 2020)

Log Message

Merge r258134 - [WPE] AsyncScrolling: scrolling with the mouse wheel over sub-scrollable areas scrolls the main frame
https://bugs.webkit.org/show_bug.cgi?id=208635

Reviewed by Carlos Garcia Campos.

Rework the default values for the async frame and overflow scrolling
so that the latter stays disabled for Nicosia-using ports as it
undergoes bigger changes.

* Shared/WebPreferencesDefaultValues.cpp:
(WebKit::defaultAsyncFrameAndOverflowScrollingEnabled):
(WebKit::defaultAsyncFrameScrollingEnabled):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.28/Source/WebKit/ChangeLog (258134 => 258135)


--- releases/WebKitGTK/webkit-2.28/Source/WebKit/ChangeLog	2020-03-09 13:08:05 UTC (rev 258134)
+++ releases/WebKitGTK/webkit-2.28/Source/WebKit/ChangeLog	2020-03-09 13:42:33 UTC (rev 258135)
@@ -1,3 +1,18 @@
+2020-03-09  Zan Dobersek  <[email protected]>
+
+        [WPE] AsyncScrolling: scrolling with the mouse wheel over sub-scrollable areas scrolls the main frame
+        https://bugs.webkit.org/show_bug.cgi?id=208635
+
+        Reviewed by Carlos Garcia Campos.
+
+        Rework the default values for the async frame and overflow scrolling
+        so that the latter stays disabled for Nicosia-using ports as it
+        undergoes bigger changes.
+
+        * Shared/WebPreferencesDefaultValues.cpp:
+        (WebKit::defaultAsyncFrameAndOverflowScrollingEnabled):
+        (WebKit::defaultAsyncFrameScrollingEnabled):
+
 2020-03-09  Carlos Garcia Campos  <[email protected]>
 
         [GTK][WPE] Surrounding text for input methods should not be limited to the current paragraph

Modified: releases/WebKitGTK/webkit-2.28/Source/WebKit/Shared/WebPreferencesDefaultValues.h (258134 => 258135)


--- releases/WebKitGTK/webkit-2.28/Source/WebKit/Shared/WebPreferencesDefaultValues.h	2020-03-09 13:08:05 UTC (rev 258134)
+++ releases/WebKitGTK/webkit-2.28/Source/WebKit/Shared/WebPreferencesDefaultValues.h	2020-03-09 13:42:33 UTC (rev 258135)
@@ -274,9 +274,13 @@
 
 #if PLATFORM(IOS_FAMILY) || USE(NICOSIA)
 #define DEFAULT_ASYNC_FRAME_SCROLLING_ENABLED true
+#else
+#define DEFAULT_ASYNC_FRAME_SCROLLING_ENABLED false
+#endif
+
+#if PLATFORM(IOS_FAMILY)
 #define DEFAULT_ASYNC_OVERFLOW_SCROLLING_ENABLED true
 #else
-#define DEFAULT_ASYNC_FRAME_SCROLLING_ENABLED false
 #define DEFAULT_ASYNC_OVERFLOW_SCROLLING_ENABLED false
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to