Changeset 56022 in webkit


Ignore:
Timestamp:
Mar 15, 2010 4:06:48 PM (14 years ago)
Author:
Chris Fleizach
Message:

Unreviewed. Fix break of layout tests on win and gtk.

VO not able to perform a VO-spacebar on facebook links
https://bugs.webkit.org/show_bug.cgi?id=36132

Attempting to implement press action for windows and gtk.

  • DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:

(AccessibilityUIElement::press):

  • DumpRenderTree/win/AccessibilityUIElementWin.cpp:

(AccessibilityUIElement::press):

Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56020 r56022  
     12010-03-15  Chris Fleizach  <cfleizach@apple.com>
     2
     3        Unreviewed. Fix break of layout tests on win and gtk.
     4
     5        VO not able to perform a VO-spacebar on facebook links
     6        https://bugs.webkit.org/show_bug.cgi?id=36132
     7
     8        Attempting to implement press action for windows and gtk.
     9
     10        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
     11        (AccessibilityUIElement::press):
     12        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
     13        (AccessibilityUIElement::press):
     14
    1152010-03-15  Chris Fleizach  <cfleizach@apple.com>
    216
  • trunk/WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp

    r56020 r56022  
    507507void AccessibilityUIElement::press()
    508508{
    509     // FIXME: implement
     509    atk_action_do_action(ATK_ACTION(ATK_OBJECT(m_element)), 0);
    510510}
    511511
  • trunk/WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp

    r56020 r56022  
    492492void AccessibilityUIElement::press()
    493493{
    494     // FIXME: implement
     494    m_element->accDoDefaultAction(self());
    495495}
    496496
Note: See TracChangeset for help on using the changeset viewer.