Title: [148267] trunk/Source/WebKit2
Revision
148267
Author
carlo...@webkit.org
Date
2013-04-12 01:12:46 -0700 (Fri, 12 Apr 2013)

Log Message

[GTK] The style of visited links doesn't change in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=112175

Reviewed by Benjamin Poulain.

The problem is that visited links were not tracked by the web
process. There's a web process initial parameter to set whether
web process should track visited links or not and it's disabled by
default.

* UIProcess/gtk/WebContextGtk.cpp:
(WebKit::WebContext::platformInitializeWebProcess): Always set
shouldTrackVisitedLinks to true.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (148266 => 148267)


--- trunk/Source/WebKit2/ChangeLog	2013-04-12 07:38:15 UTC (rev 148266)
+++ trunk/Source/WebKit2/ChangeLog	2013-04-12 08:12:46 UTC (rev 148267)
@@ -1,3 +1,19 @@
+2013-04-12  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [GTK] The style of visited links doesn't change in WebKit2
+        https://bugs.webkit.org/show_bug.cgi?id=112175
+
+        Reviewed by Benjamin Poulain.
+
+        The problem is that visited links were not tracked by the web
+        process. There's a web process initial parameter to set whether
+        web process should track visited links or not and it's disabled by
+        default.
+
+        * UIProcess/gtk/WebContextGtk.cpp:
+        (WebKit::WebContext::platformInitializeWebProcess): Always set
+        shouldTrackVisitedLinks to true.
+
 2013-04-11  Tim Horton  <timothy_hor...@apple.com>
 
         REGRESSION (r146956): ASSERTion failure: WebKit::WebProcess::pageWillLeaveWindow

Modified: trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp (148266 => 148267)


--- trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp	2013-04-12 07:38:15 UTC (rev 148266)
+++ trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp	2013-04-12 08:12:46 UTC (rev 148267)
@@ -92,6 +92,7 @@
     supplement<WebCookieManagerProxy>()->getCookiePersistentStorage(parameters.cookiePersistentStoragePath, parameters.cookiePersistentStorageType);
     parameters.cookieAcceptPolicy = m_initialHTTPCookieAcceptPolicy;
     parameters.ignoreTLSErrors = m_ignoreTLSErrors;
+    parameters.shouldTrackVisitedLinks = true;
 }
 
 void WebContext::platformInvalidateContext()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to