[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:40 UTC 2010


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

    Fix for https://bugs.webkit.org/show_bug.cgi?id=34547
    static shouldTrackVisitedLinks is not initialized
    
    Reviewed by Brady Eidson.
    
    For ports that don't call into WebKit to initialize this,
    we should initialize to true so they get the visited link behavior by default.
    
    * page/PageGroup.cpp:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54313 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a0a3044..dc9a30a 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+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
+
+        For ports that don't call into WebKit to initialize this, 
+        we should initialize to true so they get the visited link behavior by default.
+
+        * page/PageGroup.cpp:
+
 2010-02-03  Dan Bernstein  <mitz at apple.com>
 
         Reviewed by Simon Fraser.
diff --git a/WebCore/page/PageGroup.cpp b/WebCore/page/PageGroup.cpp
index 0ebbfba..a4bc67c 100644
--- a/WebCore/page/PageGroup.cpp
+++ b/WebCore/page/PageGroup.cpp
@@ -51,7 +51,7 @@ static unsigned getUniqueIdentifier()
 
 // --------
 
-static bool shouldTrackVisitedLinks;
+static bool shouldTrackVisitedLinks = true;
 
 PageGroup::PageGroup(const String& name)
     : m_name(name)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list