Title: [265739] releases/WebKitGTK/webkit-2.28/Source/WebCore
Revision
265739
Author
[email protected]
Date
2020-08-15 13:26:21 -0700 (Sat, 15 Aug 2020)

Log Message

Merged r264676 - Update Chrome and Firefox versions in user agent quirks
https://bugs.webkit.org/show_bug.cgi?id=214595

Patch by Michael Catanzaro <[email protected]> on 2020-07-21
Reviewed by Adrian Perez de Castro.

* platform/UserAgentQuirks.cpp:
(WebCore::UserAgentQuirks::stringForQuirk):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.28/Source/WebCore/ChangeLog (265738 => 265739)


--- releases/WebKitGTK/webkit-2.28/Source/WebCore/ChangeLog	2020-08-15 20:26:15 UTC (rev 265738)
+++ releases/WebKitGTK/webkit-2.28/Source/WebCore/ChangeLog	2020-08-15 20:26:21 UTC (rev 265739)
@@ -1,3 +1,13 @@
+2020-07-21  Michael Catanzaro  <[email protected]>
+
+        Update Chrome and Firefox versions in user agent quirks
+        https://bugs.webkit.org/show_bug.cgi?id=214595
+
+        Reviewed by Adrian Perez de Castro.
+
+        * platform/UserAgentQuirks.cpp:
+        (WebCore::UserAgentQuirks::stringForQuirk):
+
 2020-07-28  Adrian Perez de Castro  <[email protected]>
 
         [GTK] Crash in Nicosia::GC3DLayer::makeContextCurrent due to failure in EGL display creation

Modified: releases/WebKitGTK/webkit-2.28/Source/WebCore/platform/UserAgentQuirks.cpp (265738 => 265739)


--- releases/WebKitGTK/webkit-2.28/Source/WebCore/platform/UserAgentQuirks.cpp	2020-08-15 20:26:15 UTC (rev 265738)
+++ releases/WebKitGTK/webkit-2.28/Source/WebCore/platform/UserAgentQuirks.cpp	2020-08-15 20:26:21 UTC (rev 265739)
@@ -173,9 +173,9 @@
     switch (quirk) {
     case NeedsChromeBrowser:
         // Get versions from https://chromium.googlesource.com/chromium/src.git
-        return "Chrome/83.0.4096.4"_s;
+        return "Chrome/86.0.4208.2"_s;
     case NeedsFirefoxBrowser:
-        return "; rv:76.0) Gecko/20100101 Firefox/76.0"_s;
+        return "; rv:80.0) Gecko/20100101 Firefox/80.0"_s;
     case NeedsMacintoshPlatform:
         return "Macintosh; Intel Mac OS X 10_15"_s;
     case NeedsLinuxDesktopPlatform:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to