Title: [258414] trunk/Tools
Revision
258414
Author
katherine_che...@apple.com
Date
2020-03-13 11:36:10 -0700 (Fri, 13 Mar 2020)

Log Message

WebKit2UseRemoteLayerTreeDrawingArea should be reset to NO between layout tests
https://bugs.webkit.org/show_bug.cgi?id=209055
<rdar://problem/60272692>

Reviewed by Simon Fraser.

Now that WebKitTestRunner has a bundleID, its' user default values
persist between tests. This patch resets WebKit2UseRemoteLayerTreeDrawingArea
to NO before running tests. It will be set to YES in PlatformWebView
if specified by the test.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (258413 => 258414)


--- trunk/Tools/ChangeLog	2020-03-13 18:24:39 UTC (rev 258413)
+++ trunk/Tools/ChangeLog	2020-03-13 18:36:10 UTC (rev 258414)
@@ -1,3 +1,19 @@
+2020-03-13  Kate Cheney  <katherine_che...@apple.com>
+
+        WebKit2UseRemoteLayerTreeDrawingArea should be reset to NO between layout tests
+        https://bugs.webkit.org/show_bug.cgi?id=209055
+        <rdar://problem/60272692>
+
+        Reviewed by Simon Fraser.
+
+        Now that WebKitTestRunner has a bundleID, its' user default values
+        persist between tests. This patch resets WebKit2UseRemoteLayerTreeDrawingArea
+        to NO before running tests. It will be set to YES in PlatformWebView
+        if specified by the test.
+
+        * WebKitTestRunner/mac/main.mm:
+        (setDefaultsToConsistentValuesForTesting):
+
 2020-03-13  Konstantin Tokarev  <annu...@yandex.ru>
 
         [CMake] Eleminate mismatches between Find* module names and variables they set

Modified: trunk/Tools/WebKitTestRunner/mac/main.mm (258413 => 258414)


--- trunk/Tools/WebKitTestRunner/mac/main.mm	2020-03-13 18:24:39 UTC (rev 258413)
+++ trunk/Tools/WebKitTestRunner/mac/main.mm	2020-03-13 18:36:10 UTC (rev 258414)
@@ -45,6 +45,7 @@
         @"NSScrollAnimationEnabled": @NO,
         @"NSOverlayScrollersEnabled": @NO,
         @"AppleShowScrollBars": @"Always",
+        @"WebKit2UseRemoteLayerTreeDrawingArea": @NO,
     };
 
     [[NSUserDefaults standardUserDefaults] setValuesForKeysWithDictionary:dict];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to