Changeset 148267 in webkit


Ignore:
Timestamp:
Apr 12, 2013 1:12:46 AM (11 years ago)
Author:
Carlos Garcia Campos
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.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r148253 r148267  
     12013-04-12  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] The style of visited links doesn't change in WebKit2
     4        https://bugs.webkit.org/show_bug.cgi?id=112175
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        The problem is that visited links were not tracked by the web
     9        process. There's a web process initial parameter to set whether
     10        web process should track visited links or not and it's disabled by
     11        default.
     12
     13        * UIProcess/gtk/WebContextGtk.cpp:
     14        (WebKit::WebContext::platformInitializeWebProcess): Always set
     15        shouldTrackVisitedLinks to true.
     16
    1172013-04-11  Tim Horton  <timothy_horton@apple.com>
    218
  • trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp

    r138783 r148267  
    9393    parameters.cookieAcceptPolicy = m_initialHTTPCookieAcceptPolicy;
    9494    parameters.ignoreTLSErrors = m_ignoreTLSErrors;
     95    parameters.shouldTrackVisitedLinks = true;
    9596}
    9697
Note: See TracChangeset for help on using the changeset viewer.