[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 13:25:49 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit be5e261b8d35605dc3fbf160eac65860c8a53add
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 15 01:59:19 2010 +0000

    2010-09-14  Mihai Parparita  <mihaip at chromium.org>
    
            Reviewed by Adam Barth.
    
            Send webkit accessibility notifications to Chromium
            https://bugs.webkit.org/show_bug.cgi?id=45156
    
            Move printf inside shouldDumpAccessibilityNotifications check.
    
            * DumpRenderTree/chromium/WebViewHost.cpp:
            (WebViewHost::postAccessibilityNotification):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67527 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 54e0617..3497d33 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-14  Mihai Parparita  <mihaip at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        Send webkit accessibility notifications to Chromium
+        https://bugs.webkit.org/show_bug.cgi?id=45156
+
+        Move printf inside shouldDumpAccessibilityNotifications check.
+
+        * DumpRenderTree/chromium/WebViewHost.cpp:
+        (WebViewHost::postAccessibilityNotification):
+
 2010-09-14  Tony Chang  <tony at chromium.org>
 
         Reviewed by Kent Tamura.
diff --git a/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp b/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp
index db81d56..8ec43d8 100644
--- a/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp
+++ b/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp
@@ -492,9 +492,9 @@ void WebViewHost::focusAccessibilityObject(const WebAccessibilityObject& object)
 
 void WebViewHost::postAccessibilityNotification(const WebAccessibilityObject& obj, WebAccessibilityNotification notification)
 {
-    printf("AccessibilityNotification - ");
-    
     if (m_shell->accessibilityController()->shouldDumpAccessibilityNotifications()) {
+        printf("AccessibilityNotification - ");
+
         switch (notification) {
         case WebAccessibilityNotificationActiveDescendantChanged:
             printf("ActiveDescendantChanged");

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list