[Webkit-unassigned] [Bug 56655] [GTK] Expose the AtkValue interface for WAI-ARIA sliders

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Mar 25 09:34:08 PDT 2011


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


Martin Robinson <mrobinson at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #86703|review?                     |review+
               Flag|                            |




--- Comment #2 from Martin Robinson <mrobinson at webkit.org>  2011-03-25 09:34:08 PST ---
(From update of attachment 86703)
View in context: https://bugs.webkit.org/attachment.cgi?id=86703&action=review

> Source/WebCore/accessibility/gtk/AXObjectCacheAtk.cpp:156
> +        GValue gValue = { 0 };
> +        atk_value_get_current_value(ATK_VALUE(axObject), &gValue);
> +
> +        AtkPropertyValues propertyValues;
> +        propertyValues.property_name = "accessible-value";
> +        propertyValues.new_value = gValue;
> +

Would it make sense to simply do:

atk_value_get_current_value(ATK_VALUE(axObject), &propertyValues.new_value);

-- 
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