Title: [234734] trunk/Tools
Revision
234734
Author
[email protected]
Date
2018-08-09 13:43:26 -0700 (Thu, 09 Aug 2018)

Log Message

REGRESSION(r234652): fast/scrolling/rtl-scrollbars-animation-property.html is failing
https://bugs.webkit.org/show_bug.cgi?id=188397

Reviewed by Tim Horton.

After r234652, [NSScroller preferredScrollerStyle] is called in the UI process, and we need to set the same
user defaults related to scrollbars in the UI process as we do in the WebProcess.

* WebKitTestRunner/mac/main.mm:
(setDefaultsToConsistentValuesForTesting):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (234733 => 234734)


--- trunk/Tools/ChangeLog	2018-08-09 20:13:27 UTC (rev 234733)
+++ trunk/Tools/ChangeLog	2018-08-09 20:43:26 UTC (rev 234734)
@@ -1,3 +1,16 @@
+2018-08-09  Per Arne Vollan  <[email protected]>
+
+        REGRESSION(r234652): fast/scrolling/rtl-scrollbars-animation-property.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=188397
+
+        Reviewed by Tim Horton.
+
+        After r234652, [NSScroller preferredScrollerStyle] is called in the UI process, and we need to set the same
+        user defaults related to scrollbars in the UI process as we do in the WebProcess.
+
+        * WebKitTestRunner/mac/main.mm:
+        (setDefaultsToConsistentValuesForTesting):
+
 2018-08-09  Wenson Hsieh  <[email protected]>
 
         [iOS WK2] Rename and refactor DataInteractionTests and DataInteractionSimulator

Modified: trunk/Tools/WebKitTestRunner/mac/main.mm (234733 => 234734)


--- trunk/Tools/WebKitTestRunner/mac/main.mm	2018-08-09 20:13:27 UTC (rev 234733)
+++ trunk/Tools/WebKitTestRunner/mac/main.mm	2018-08-09 20:43:26 UTC (rev 234734)
@@ -42,6 +42,9 @@
         @"com.apple.swipescrolldirection": @1,
         @"com.apple.trackpad.forceClick": @1,
         @"WebKitLinkedOnOrAfterEverything": @YES,
+        @"NSScrollAnimationEnabled": @NO,
+        @"NSOverlayScrollersEnabled": @NO,
+        @"AppleShowScrollBars": @"Always",
     };
 
     [[NSUserDefaults standardUserDefaults] setValuesForKeysWithDictionary:dict];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to