Changeset 137111 in webkit


Ignore:
Timestamp:
Dec 9, 2012 11:28:02 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] lack of implemention of AccessibilityUIElementGtk::isSelectable and AccessibilityUIElementGtk::isMultiSelectable
https://bugs.webkit.org/show_bug.cgi?id=104481

Patch by Alejandro Piñeiro <apinheiro@igalia.com> on 2012-12-09
Reviewed by Martin Robinson.

  • DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:

(AccessibilityUIElement::isSelectable): Implement this by checking
the current state of the AtkObject.
(AccessibilityUIElement::isMultiSelectable): Implement this by
checking the current state of the AtkObject.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r137099 r137111  
     12012-12-09  Alejandro Piñeiro  <apinheiro@igalia.com>
     2
     3        [GTK] lack of implemention of AccessibilityUIElementGtk::isSelectable and AccessibilityUIElementGtk::isMultiSelectable
     4        https://bugs.webkit.org/show_bug.cgi?id=104481
     5
     6        Reviewed by Martin Robinson.
     7
     8        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
     9        (AccessibilityUIElement::isSelectable): Implement this by checking
     10        the current state of the AtkObject.
     11        (AccessibilityUIElement::isMultiSelectable): Implement this by
     12        checking the current state of the AtkObject.
     13
    1142012-12-09  Joanmarie Diggs  <jdiggs@igalia.com>
    215
  • trunk/Tools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp

    r137099 r137111  
    954954bool AccessibilityUIElement::isSelectable() const
    955955{
    956     // FIXME: implement
    957     return false;
     956    return checkElementState(m_element, ATK_STATE_SELECTABLE);
    958957}
    959958
    960959bool AccessibilityUIElement::isMultiSelectable() const
    961960{
    962     // FIXME: implement
    963     return false;
     961    return checkElementState(m_element, ATK_STATE_MULTISELECTABLE);
    964962}
    965963
Note: See TracChangeset for help on using the changeset viewer.