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

bweinstein at apple.com bweinstein at apple.com
Wed Apr 7 23:18:01 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit ba6bab1d5f8342786135655d71aceada2ed319fc
Author: bweinstein at apple.com <bweinstein at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Nov 2 06:03:38 2009 +0000

    Re-fix the Mac build. Sorry :-(.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50404 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/dom/Node.cpp b/WebCore/dom/Node.cpp
index 0b53241..a382dce 100644
--- a/WebCore/dom/Node.cpp
+++ b/WebCore/dom/Node.cpp
@@ -2451,7 +2451,7 @@ static bool eventHasListeners(const AtomicString& eventType, Node* node, Vector<
     if (node->hasEventListeners(eventType))
         return true;
 
-    for (unsigned i = (ancestors.size() - 1); i >= 0; --i) {
+    for (unsigned i = 0; i < ancestors.size(); i++) {
         ContainerNode* ancestor = ancestors[i].get();
         if (ancestor->hasEventListeners(eventType))
             return true;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list