Title: [280490] trunk/Source/WebKit
Revision
280490
Author
[email protected]
Date
2021-07-30 12:49:26 -0700 (Fri, 30 Jul 2021)

Log Message

Accessibility code logs to stderr in many layout test runs
https://bugs.webkit.org/show_bug.cgi?id=228653

Reviewed by Wenson Hsieh.

* WebProcess/cocoa/WebProcessCocoa.mm:
(WebKit::WebProcess::accessibilityPreferencesDidChange):
r279342 accidentally landed a WTFLogAlways in a common codepath. Remove it.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (280489 => 280490)


--- trunk/Source/WebKit/ChangeLog	2021-07-30 18:56:07 UTC (rev 280489)
+++ trunk/Source/WebKit/ChangeLog	2021-07-30 19:49:26 UTC (rev 280490)
@@ -1,3 +1,14 @@
+2021-07-30  Tim Horton  <[email protected]>
+
+        Accessibility code logs to stderr in many layout test runs
+        https://bugs.webkit.org/show_bug.cgi?id=228653
+
+        Reviewed by Wenson Hsieh.
+
+        * WebProcess/cocoa/WebProcessCocoa.mm:
+        (WebKit::WebProcess::accessibilityPreferencesDidChange):
+        r279342 accidentally landed a WTFLogAlways in a common codepath. Remove it.
+
 2021-07-30  Youenn Fablet  <[email protected]>
 
         softlink nw_parameters_allow_sharing_port_with_listener

Modified: trunk/Source/WebKit/WebProcess/cocoa/WebProcessCocoa.mm (280489 => 280490)


--- trunk/Source/WebKit/WebProcess/cocoa/WebProcessCocoa.mm	2021-07-30 18:56:07 UTC (rev 280489)
+++ trunk/Source/WebKit/WebProcess/cocoa/WebProcessCocoa.mm	2021-07-30 19:49:26 UTC (rev 280490)
@@ -1066,7 +1066,6 @@
 #if HAVE(PER_APP_ACCESSIBILITY_PREFERENCES)
     auto appID = CFSTR("com.apple.WebKit.WebContent");
     auto reduceMotionEnabled = preferences.reduceMotionEnabled;
-    WTFLogAlways("AX: reduce motion: %d", (int)reduceMotionEnabled);
     if (_AXSReduceMotionEnabledApp(appID) != reduceMotionEnabled)
         _AXSSetReduceMotionEnabledApp(reduceMotionEnabled, appID);
     auto increaseButtonLegibility = preferences.increaseButtonLegibility;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to