[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

cfleizach at apple.com cfleizach at apple.com
Thu Apr 8 02:22:59 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 7e7c4f9a257e7920db28583e404726b4900dfae1
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Mar 15 23:06:48 2010 +0000

    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):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@56022 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 9c993fb..78f48cc 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,5 +1,19 @@
 2010-03-15  Chris Fleizach  <cfleizach at apple.com>
 
+        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):
+
+2010-03-15  Chris Fleizach  <cfleizach at apple.com>
+
         Reviewed by Beth Dakin.
 
         VO not able to perform a VO-spacebar on facebook links
diff --git a/WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp b/WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp
index 7ac5308..d519f91 100644
--- a/WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp
+++ b/WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp
@@ -506,7 +506,7 @@ void AccessibilityUIElement::decrement()
 
 void AccessibilityUIElement::press()
 {
-    // FIXME: implement
+    atk_action_do_action(ATK_ACTION(ATK_OBJECT(m_element)), 0);
 }
 
 void AccessibilityUIElement::showMenu()
diff --git a/WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp b/WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp
index 0970eae..ecb7b11 100644
--- a/WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp
+++ b/WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp
@@ -491,7 +491,7 @@ void AccessibilityUIElement::showMenu()
 
 void AccessibilityUIElement::press()
 {
-    // FIXME: implement
+    m_element->accDoDefaultAction(self());
 }
 
 AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list