[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373
adele at apple.com
adele at apple.com
Thu Apr 8 01:38:28 UTC 2010
The following commit has been merged in the webkit-1.2 branch:
commit 55c0cc11765bf911fc4f7428f92f3fc9de557413
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