[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d
bweinstein at apple.com
bweinstein at apple.com
Thu Dec 3 13:24:32 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit c61b12db0aece77d1d554e88c4f82edf26703780
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