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

ap at apple.com ap at apple.com
Wed Dec 22 11:39:59 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 85bfa4b2c385d3e4a6464e135d8d88b8c06426c6
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 3 08:32:33 2010 +0000

            Unreviewed (emergency test fix).
    
            REGRESSION (r64518): Most regression tests fail on ASSERT(shouldTrackVisitedLinks)
            on Snow Leopard.
    
            Platforms that use strategies now use a different code path than others, and that code path
            lacks necessary checks. We don't have a Snow Leopard debug buildbot.
    
            * page/PageGroup.cpp: (WebCore::PageGroup::addVisitedLinkHash): The private version of
            addVisitedLink() must not be called when we're not tracking visited links.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64535 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5156bf9..564d338 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-08-03  Alexey Proskuryakov  <ap at apple.com>
+
+        Unreviewed (emergency test fix).
+
+        REGRESSION (r64518): Most regression tests fail on ASSERT(shouldTrackVisitedLinks)
+        on Snow Leopard.
+
+        Platforms that use strategies now use a different code path than others, and that code path
+        lacks necessary checks. We don't have a Snow Leopard debug buildbot.
+
+        * page/PageGroup.cpp: (WebCore::PageGroup::addVisitedLinkHash): The private version of
+        addVisitedLink() must not be called when we're not tracking visited links.
+
 2010-08-02  Pavel Feldman  <pfeldman at chromium.org>
 
         Reviewed by Yury Semikhatsky.
diff --git a/WebCore/page/PageGroup.cpp b/WebCore/page/PageGroup.cpp
index 15d4d8d..12b1a41 100644
--- a/WebCore/page/PageGroup.cpp
+++ b/WebCore/page/PageGroup.cpp
@@ -138,7 +138,8 @@ bool PageGroup::isLinkVisited(LinkHash visitedLinkHash)
 
 void PageGroup::addVisitedLinkHash(LinkHash hash)
 {
-    addVisitedLink(hash);
+    if (shouldTrackVisitedLinks)
+        addVisitedLink(hash);
 }
 
 inline void PageGroup::addVisitedLink(LinkHash hash)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list