Title: [254320] trunk/Source/WebCore
Revision
254320
Author
[email protected]
Date
2020-01-09 18:34:39 -0800 (Thu, 09 Jan 2020)

Log Message

Disable accessibility isolated tree for LayoutTests.
https://bugs.webkit.org/show_bug.cgi?id=206048
<rdar://problem/58459580>

Reviewed by Chris Fleizach.

Fix for numerous LayoutTests failing when using accessibility isolated tree.

* accessibility/AXObjectCache.cpp:
(WebCore::AXObjectCache::clientSupportsIsolatedTree):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (254319 => 254320)


--- trunk/Source/WebCore/ChangeLog	2020-01-10 02:21:12 UTC (rev 254319)
+++ trunk/Source/WebCore/ChangeLog	2020-01-10 02:34:39 UTC (rev 254320)
@@ -1,3 +1,16 @@
+2020-01-09  Andres Gonzalez  <[email protected]>
+
+        Disable accessibility isolated tree for LayoutTests.
+        https://bugs.webkit.org/show_bug.cgi?id=206048
+        <rdar://problem/58459580>
+
+        Reviewed by Chris Fleizach.
+
+        Fix for numerous LayoutTests failing when using accessibility isolated tree.
+
+        * accessibility/AXObjectCache.cpp:
+        (WebCore::AXObjectCache::clientSupportsIsolatedTree):
+
 2020-01-09  Wenson Hsieh  <[email protected]>
 
         Text manipulation controller should not observe changes in new replacement elements

Modified: trunk/Source/WebCore/accessibility/AXObjectCache.cpp (254319 => 254320)


--- trunk/Source/WebCore/accessibility/AXObjectCache.cpp	2020-01-10 02:21:12 UTC (rev 254319)
+++ trunk/Source/WebCore/accessibility/AXObjectCache.cpp	2020-01-10 02:34:39 UTC (rev 254320)
@@ -719,8 +719,7 @@
     AXClientType type = _AXGetClientForCurrentRequestUntrusted();
     // FIXME: Remove unknown client before setting isAccessibilityIsolatedTreeEnabled initial value = true.
     return type == kAXClientTypeVoiceOver
-        || type == kAXClientTypeUnknown
-        || type == kAXClientTypeNoActiveRequestFound; // For LayoutTests.
+        || type == kAXClientTypeUnknown;
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to