Title: [234755] branches/safari-606.1.36.1-branch/Tools
Revision
234755
Author
[email protected]
Date
2018-08-10 09:02:05 -0700 (Fri, 10 Aug 2018)

Log Message

Cherry-pick r234734. rdar://problem/42387347

    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):

    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@234734 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-606.1.36.1-branch/Tools/ChangeLog (234754 => 234755)


--- branches/safari-606.1.36.1-branch/Tools/ChangeLog	2018-08-10 15:52:00 UTC (rev 234754)
+++ branches/safari-606.1.36.1-branch/Tools/ChangeLog	2018-08-10 16:02:05 UTC (rev 234755)
@@ -1,3 +1,34 @@
+2018-08-10  Ryan Haddad  <[email protected]>
+
+        Cherry-pick r234734. rdar://problem/42387347
+
+    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):
+    
+    
+    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@234734 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-03  Babak Shafiei  <[email protected]>
 
         Cherry-pick r234547. rdar://problem/42902608

Modified: branches/safari-606.1.36.1-branch/Tools/WebKitTestRunner/mac/main.mm (234754 => 234755)


--- branches/safari-606.1.36.1-branch/Tools/WebKitTestRunner/mac/main.mm	2018-08-10 15:52:00 UTC (rev 234754)
+++ branches/safari-606.1.36.1-branch/Tools/WebKitTestRunner/mac/main.mm	2018-08-10 16:02:05 UTC (rev 234755)
@@ -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