Commit 450cdbe0 authored by adele@apple.com's avatar adele@apple.com

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: svn://svn.chromium.org/blink/trunk@54313 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 1ced014e
2010-02-03 Adele Peterson <adele@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@apple.com>
Reviewed by Simon Fraser.
......
......@@ -51,7 +51,7 @@ static unsigned getUniqueIdentifier()
// --------
static bool shouldTrackVisitedLinks;
static bool shouldTrackVisitedLinks = true;
PageGroup::PageGroup(const String& name)
: m_name(name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment