Changeset 158913 in webkit


Ignore:
Timestamp:
Nov 8, 2013 2:24:39 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] accessibility/aria-link-supports-press.html is failing
https://bugs.webkit.org/show_bug.cgi?id=98355

Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-11-08
Reviewed by Mario Sanchez Prada.

Tools:

Checking "jump" action for link elements. Action "jump" occurs when a link
element is pressed/clicked.

  • DumpRenderTree/atk/AccessibilityUIElementAtk.cpp:

(AccessibilityUIElement::isPressActionSupported):

  • WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:

(WTR::AccessibilityUIElement::isPressActionSupported):

LayoutTests:

Removed failure expectation.

  • platform/gtk/TestExpectations: test is no longer failing.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r158911 r158913  
     12013-11-08  Krzysztof Czech  <k.czech@samsung.com>
     2
     3        [GTK] accessibility/aria-link-supports-press.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=98355
     5
     6        Reviewed by Mario Sanchez Prada.
     7
     8        Removed failure expectation.
     9
     10        * platform/gtk/TestExpectations: test is no longer failing.
     11
    1122013-11-08  Andreas Kling  <akling@apple.com>
    213
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r158841 r158913  
    876876
    877877webkit.org/b/121684 accessibility/aria-describedby-on-input.html [ Failure ]
    878 webkit.org/b/98355 accessibility/aria-link-supports-press.html [ Failure ]
    879878webkit.org/b/98357 accessibility/aria-readonly.html [ Failure ]
    880879webkit.org/b/98359 accessibility/aria-text-role.html [ Failure ]
  • trunk/Tools/ChangeLog

    r158912 r158913  
     12013-11-08  Krzysztof Czech  <k.czech@samsung.com>
     2
     3        [GTK] accessibility/aria-link-supports-press.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=98355
     5
     6        Reviewed by Mario Sanchez Prada.
     7
     8        Checking "jump" action for link elements. Action "jump" occurs when a link
     9        element is pressed/clicked.
     10
     11        * DumpRenderTree/atk/AccessibilityUIElementAtk.cpp:
     12        (AccessibilityUIElement::isPressActionSupported):
     13        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
     14        (WTR::AccessibilityUIElement::isPressActionSupported):
     15
    1162013-11-08  Przemyslaw Szymanski  <p.szymanski3@samsung.com>
    217
  • trunk/Tools/DumpRenderTree/atk/AccessibilityUIElementAtk.cpp

    r158841 r158913  
    908908        return false;
    909909
    910     return equalIgnoringCase(atk_action_get_name(ATK_ACTION(m_element), 0), String("press"));
     910    const gchar* actionName = atk_action_get_name(ATK_ACTION(m_element), 0);
     911    return equalIgnoringCase(actionName, String("press")) || equalIgnoringCase(actionName, String("jump"));
    911912}
    912913
  • trunk/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp

    r158841 r158913  
    10111011        return false;
    10121012
    1013     return equalIgnoringCase(atk_action_get_name(ATK_ACTION(m_element.get()), 0), String("press"));
     1013    const gchar* actionName = atk_action_get_name(ATK_ACTION(m_element.get()), 0);
     1014    return equalIgnoringCase(actionName, String("press")) || equalIgnoringCase(actionName, String("jump"));
    10141015}
    10151016
Note: See TracChangeset for help on using the changeset viewer.