[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.20-204-g221d8e8

adele at apple.com adele at apple.com
Wed Feb 10 22:11:45 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit f9b17afdf8c0473766e6cfe24730aede45ca2280
Author: adele at apple.com <adele at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Feb 4 01:32:32 2010 +0000

    Initialize the variable in the last checkin to false.  I didn't realize DRT relies on this being false.
    So ports that want visited link tracking need to set that flag.
    
    Reviewed by Brady Eidson.
    
    * page/PageGroup.cpp:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54316 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index dc9a30a..0325f78 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,15 @@
 
         Reviewed by Brady Eidson.
 
+        Initialize the variable in the last checkin to false.  I didn't realize DRT relies on this being false.  
+        So ports that want visited link tracking need to set that flag.
+
+        * page/PageGroup.cpp:
+
+2010-02-03  Adele Peterson  <adele at apple.com>
+
+        Reviewed by Brady Eidson.
+
         Fix for https://bugs.webkit.org/show_bug.cgi?id=34547
         static shouldTrackVisitedLinks is not initialized
 
diff --git a/WebCore/page/PageGroup.cpp b/WebCore/page/PageGroup.cpp
index a4bc67c..f376d52 100644
--- a/WebCore/page/PageGroup.cpp
+++ b/WebCore/page/PageGroup.cpp
@@ -51,7 +51,7 @@ static unsigned getUniqueIdentifier()
 
 // --------
 
-static bool shouldTrackVisitedLinks = true;
+static bool shouldTrackVisitedLinks = false;
 
 PageGroup::PageGroup(const String& name)
     : m_name(name)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list