Skip to content

Commit bae2b3e

Browse files
committed
[EFL] Bump Version/X in user agent
https://bugs.webkit.org/show_bug.cgi?id=150013 Reviewed by Csaba Osztrogonác. EFL port needs to ensure maximum compatibility with existing web sites. Thus version number needs to be bumped from 5.0 to 8.0 as GTK port. * UIProcess/efl/WebPageProxyEfl.cpp: (WebKit::WebPageProxy::standardUserAgent): Canonical link: https://commits.webkit.org/168145@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@190851 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 97f360d commit bae2b3e

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

Source/WebKit2/ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2015-10-12 Gyuyoung Kim <gyuyoung.kim@webkit.org>
2+
3+
[EFL] Bump Version/X in user agent
4+
https://bugs.webkit.org/show_bug.cgi?id=150013
5+
6+
Reviewed by Csaba Osztrogonác.
7+
8+
EFL port needs to ensure maximum compatibility with existing web sites.
9+
Thus version number needs to be bumped from 5.0 to 8.0 as GTK port.
10+
11+
* UIProcess/efl/WebPageProxyEfl.cpp:
12+
(WebKit::WebPageProxy::standardUserAgent):
13+
114
2015-10-10 Dan Bernstein <mitz@apple.com>
215

316
[iOS] Remove unnecessary iOS version checks

Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ String WebPageProxy::standardUserAgent(const String& applicationNameForUserAgent
6363
osVersion = "Unknown";
6464

6565
standardUserAgentString = "Mozilla/5.0 (" + platform + "; " + osVersion + ") AppleWebKit/" + version
66-
+ " (KHTML, like Gecko) Version/5.0 Safari/" + version;
66+
+ " (KHTML, like Gecko) Version/8.0 Safari/" + version;
6767

6868
return applicationNameForUserAgent.isEmpty() ? standardUserAgentString : standardUserAgentString + ' ' + applicationNameForUserAgent;
6969
}

0 commit comments

Comments
 (0)