[Webkit-unassigned] [Bug 230254] [GTK][a11y] Add a build option to enable ATSPI
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Sep 14 17:56:20 PDT 2021
https://bugs.webkit.org/show_bug.cgi?id=230254
--- Comment #9 from Andres Gonzalez <andresg_22 at apple.com> ---
(In reply to Carlos Garcia Campos from comment #6)
> Created attachment 438134 [details]
> Patch
--- a/Source/WebCore/accessibility/isolatedtree/AXIsolatedObject.cpp
+++ a/Source/WebCore/accessibility/isolatedtree/AXIsolatedObject.cpp
@@ -71,11 +71,15 @@ void AXIsolatedObject::initializeAttributeData(AXCoreObject& object, bool isRoot
setProperty(AXPropertyName::ARIALandmarkRoleDescription, object.ariaLandmarkRoleDescription().isolatedCopy());
setProperty(AXPropertyName::AccessibilityDescription, object.accessibilityDescription().isolatedCopy());
setProperty(AXPropertyName::BoundingBoxRect, object.boundingBoxRect());
+#if PLATFORM(COCOA)
setProperty(AXPropertyName::Description, object.descriptionAttributeValue().isolatedCopy());
+#endif
Could we move these platform-specific properties to initializePlatformProperties? That way we wouldn't have to #if throughout here.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210915/8930d737/attachment.htm>
More information about the webkit-unassigned
mailing list