[Webkit-unassigned] [Bug 72589] [GTK] Expose accessibility hierarchy in WebKit2 to ATK/AT-SPI based ATs

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 17 01:02:10 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=72589





--- Comment #31 from Carlos Garcia Campos <cgarcia at igalia.com>  2012-01-17 01:02:10 PST ---
(From update of attachment 121814)
View in context: https://bugs.webkit.org/attachment.cgi?id=121814&action=review

Looks good to me in general, great work!

> Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObjectGtk.cpp:88
> +    AtkObject* rootObject = accessibilityRootObjectWrapper(atkObject);
> +    if (!rootObject)
> +        return 0;
> +
> +    return 1;

This could be simply:

return accessibilityRootObjectWrapper(atkObject) ? 1 : 0;

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list