Title: [284239] trunk/Source/WebCore
- Revision
- 284239
- Author
- [email protected]
- Date
- 2021-10-15 02:03:25 -0700 (Fri, 15 Oct 2021)
Log Message
[WPE][GTK] Update user agent browser versions
https://bugs.webkit.org/show_bug.cgi?id=231772
Patch by Michael Catanzaro <[email protected]> on 2021-10-15
Reviewed by Carlos Garcia Campos.
* platform/UserAgentQuirks.cpp:
(WebCore::UserAgentQuirks::stringForQuirk):
* platform/glib/UserAgentGLib.cpp:
(WebCore::buildUserAgentString):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (284238 => 284239)
--- trunk/Source/WebCore/ChangeLog 2021-10-15 08:42:54 UTC (rev 284238)
+++ trunk/Source/WebCore/ChangeLog 2021-10-15 09:03:25 UTC (rev 284239)
@@ -1,3 +1,15 @@
+2021-10-15 Michael Catanzaro <[email protected]>
+
+ [WPE][GTK] Update user agent browser versions
+ https://bugs.webkit.org/show_bug.cgi?id=231772
+
+ Reviewed by Carlos Garcia Campos.
+
+ * platform/UserAgentQuirks.cpp:
+ (WebCore::UserAgentQuirks::stringForQuirk):
+ * platform/glib/UserAgentGLib.cpp:
+ (WebCore::buildUserAgentString):
+
2021-10-15 Robin Morisset <[email protected]>
Revert r284230, my last fixes to the watch build make it break tests
Modified: trunk/Source/WebCore/platform/UserAgentQuirks.cpp (284238 => 284239)
--- trunk/Source/WebCore/platform/UserAgentQuirks.cpp 2021-10-15 08:42:54 UTC (rev 284238)
+++ trunk/Source/WebCore/platform/UserAgentQuirks.cpp 2021-10-15 09:03:25 UTC (rev 284239)
@@ -169,9 +169,9 @@
switch (quirk) {
case NeedsChromeBrowser:
// Get versions from https://chromium.googlesource.com/chromium/src.git
- return "Chrome/90.0.4419.1"_s;
+ return "Chrome/97.0.4669.2"_s;
case NeedsFirefoxBrowser:
- return "; rv:87.0) Gecko/20100101 Firefox/87.0"_s;
+ return "; rv:95.0) Gecko/20100101 Firefox/95.0"_s;
case NeedsMacintoshPlatform:
return "Macintosh; Intel Mac OS X 10_15"_s;
case NeedsUnbrandedUserAgent:
Modified: trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp (284238 => 284239)
--- trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp 2021-10-15 08:42:54 UTC (rev 284238)
+++ trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp 2021-10-15 09:03:25 UTC (rev 284239)
@@ -104,7 +104,7 @@
// Version/X is mandatory *before* Safari/X to be a valid Safari UA. See
// https://bugs.webkit.org/show_bug.cgi?id=133403 for details.
} else
- uaString.append("Version/14.0 ");
+ uaString.append("Version/15.0 ");
if (chassisType() == WTF::ChassisType::Mobile)
uaString.append("Mobile ");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes