Title: [248610] branches/safari-608-branch/Source/WebCore
Revision
248610
Author
alanc...@apple.com
Date
2019-08-13 13:00:42 -0700 (Tue, 13 Aug 2019)

Log Message

Cherry-pick r248188. rdar://problem/54237663

    Add accessibility object method to determine whether an element is inside a table cell. Needed for iOS accessibility client.
    https://bugs.webkit.org/show_bug.cgi?id=200394
    <rdar://problem/52914964>

    Patch by Andres Gonzalez <andresg...@apple.com> on 2019-08-02
    Reviewed by Chris Fleizach.

    Explicitly returning BOOL to avoid error in some compiler configurations.
    * accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:
    (-[WebAccessibilityObjectWrapper _accessibilityIsInTableCell]):

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

Modified Paths

Diff

Modified: branches/safari-608-branch/Source/WebCore/ChangeLog (248609 => 248610)


--- branches/safari-608-branch/Source/WebCore/ChangeLog	2019-08-13 20:00:40 UTC (rev 248609)
+++ branches/safari-608-branch/Source/WebCore/ChangeLog	2019-08-13 20:00:42 UTC (rev 248610)
@@ -1,5 +1,34 @@
 2019-08-13  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r248188. rdar://problem/54237663
+
+    Add accessibility object method to determine whether an element is inside a table cell. Needed for iOS accessibility client.
+    https://bugs.webkit.org/show_bug.cgi?id=200394
+    <rdar://problem/52914964>
+    
+    Patch by Andres Gonzalez <andresg...@apple.com> on 2019-08-02
+    Reviewed by Chris Fleizach.
+    
+    Explicitly returning BOOL to avoid error in some compiler configurations.
+    * accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:
+    (-[WebAccessibilityObjectWrapper _accessibilityIsInTableCell]):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248188 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-08-02  Andres Gonzalez  <andresg...@apple.com>
+
+            Add accessibility object method to determine whether an element is inside a table cell. Needed for iOS accessibility client.
+            https://bugs.webkit.org/show_bug.cgi?id=200394
+            <rdar://problem/52914964>
+
+            Reviewed by Chris Fleizach.
+
+            Explicitly returning BOOL to avoid error in some compiler configurations.
+            * accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:
+            (-[WebAccessibilityObjectWrapper _accessibilityIsInTableCell]):
+
+2019-08-13  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r248169. rdar://problem/54237663
 
     Add accessibility object method to determine whether an element is inside a table cell. Needed for iOS accessibility client.

Modified: branches/safari-608-branch/Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm (248609 => 248610)


--- branches/safari-608-branch/Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm	2019-08-13 20:00:40 UTC (rev 248609)
+++ branches/safari-608-branch/Source/WebCore/accessibility/ios/WebAccessibilityObjectWrapperIOS.mm	2019-08-13 20:00:42 UTC (rev 248610)
@@ -603,7 +603,7 @@
 {
     return AccessibilityObject::matchedParent(*m_object, false, [] (const AccessibilityObject& object) {
         return object.roleValue() == AccessibilityRole::Cell;
-    });
+    }) != nullptr;
 }
 
 - (AccessibilityObjectWrapper*)_accessibilityFieldsetAncestor
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to