Changeset 166405 in webkit
- Timestamp:
- Mar 28, 2014, 7:18:46 AM (11 years ago)
- Location:
- trunk/Source
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r166404 r166405 1 2014-03-28 Diego Pino Garcia <dpino@igalia.com> 2 3 [GTK] Too many redirects visiting www.globalforestwatch.org 4 https://bugs.webkit.org/show_bug.cgi?id=129681 5 6 Reviewed by Martin Robinson. 7 8 * platform/gtk/UserAgentGtk.cpp: 9 (WebCore::standardUserAgent): Append Safari version to UserAgent 10 string. 11 1 12 2014-03-28 Michael Saboff <msaboff@apple.com> 2 13 -
trunk/Source/WebCore/platform/gtk/UserAgentGtk.cpp
r165676 r166405 71 71 // sites won't load resources at all. 72 72 DEPRECATED_DEFINE_STATIC_LOCAL(const CString, uaVersion, (String::format("%i.%i", USER_AGENT_GTK_MAJOR_VERSION, USER_AGENT_GTK_MINOR_VERSION).utf8())); 73 DEPRECATED_DEFINE_STATIC_LOCAL(const String, staticUA, (String::format("Mozilla/5.0 (Macintosh; %s) AppleWebKit/%s (KHTML, like Gecko) Safari/%s ",73 DEPRECATED_DEFINE_STATIC_LOCAL(const String, staticUA, (String::format("Mozilla/5.0 (Macintosh; %s) AppleWebKit/%s (KHTML, like Gecko) Safari/%s Version/6.0", 74 74 platformVersionForUAString().utf8().data(), uaVersion.data(), uaVersion.data()))); 75 75 -
trunk/Source/WebKit/gtk/ChangeLog
r166239 r166405 1 2014-03-28 Diego Pino Garcia <dpino@igalia.com> 2 3 [GTK] Too many redirects visiting www.globalforestwatch.org 4 https://bugs.webkit.org/show_bug.cgi?id=129681 5 6 Reviewed by Martin Robinson. 7 8 * webkit/webkitwebsettings.cpp: 9 (userAgentForURL): Change outdated comment. 10 1 11 2014-03-25 Martin Robinson <mrobinson@igalia.com> 2 12 -
trunk/Source/WebKit/gtk/webkit/webkitwebsettings.cpp
r164438 r166405 1614 1614 { 1615 1615 // For Google domains, drop the browser's custom User Agent string, and use the 1616 // standard Chromeone, so they don't give us a broken experience.1616 // standard one, so they don't give us a broken experience. 1617 1617 if (isGoogleDomain(url.host())) 1618 1618 return standardUserAgent();
Note:
See TracChangeset
for help on using the changeset viewer.