Title: [257838] trunk/Tools
Revision
257838
Author
andresg...@apple.com
Date
2020-03-04 03:47:32 -0800 (Wed, 04 Mar 2020)

Log Message

REGRESSION (r257739): two fast/events/autoscroll test have started to fail
https://bugs.webkit.org/show_bug.cgi?id=208520
<rdar://problem/60000214>

Reviewed by Chris Fleizach.

Calling InjectedBundle::singleton().page()->page() in the constructor
of the AccessibilityController is having this side effect on iOS.
So #if to MAC where it's actually being used.

* WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
(WTR::AccessibilityController::AccessibilityController):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (257837 => 257838)


--- trunk/Tools/ChangeLog	2020-03-04 08:56:15 UTC (rev 257837)
+++ trunk/Tools/ChangeLog	2020-03-04 11:47:32 UTC (rev 257838)
@@ -1,3 +1,18 @@
+2020-03-04  Andres Gonzalez  <andresg...@apple.com>
+
+        REGRESSION (r257739): two fast/events/autoscroll test have started to fail
+        https://bugs.webkit.org/show_bug.cgi?id=208520
+        <rdar://problem/60000214>
+
+        Reviewed by Chris Fleizach.
+
+        Calling InjectedBundle::singleton().page()->page() in the constructor
+        of the AccessibilityController is having this side effect on iOS.
+        So #if to MAC where it's actually being used.
+
+        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
+        (WTR::AccessibilityController::AccessibilityController):
+
 2020-03-03  Alex Christensen  <achristen...@webkit.org>
 
         Add SPI _WKResourceLoadInfo.loadedFromCache

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp (257837 => 257838)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp	2020-03-04 08:56:15 UTC (rev 257837)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp	2020-03-04 11:47:32 UTC (rev 257838)
@@ -46,7 +46,7 @@
 
 AccessibilityController::AccessibilityController()
 {
-#if PLATFORM(COCOA)
+#if PLATFORM(MAC)
     m_useAXThread = WKAccessibilityCanUseSecondaryAXThread(InjectedBundle::singleton().page()->page());
 #endif
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to