Title: [269947] trunk/Source/WebCore
Revision
269947
Author
[email protected]
Date
2020-11-18 00:39:40 -0800 (Wed, 18 Nov 2020)

Log Message

[WPE][GTK] Update Safari version in user agent header for Safari 14
https://bugs.webkit.org/show_bug.cgi?id=219048

Patch by Michael Catanzaro <[email protected]> on 2020-11-18
Reviewed by Carlos Garcia Campos.

See: https://webkit.org/blog/11340/new-webkit-features-in-safari-14/

* platform/glib/UserAgentGLib.cpp:
(WebCore::buildUserAgentString):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269946 => 269947)


--- trunk/Source/WebCore/ChangeLog	2020-11-18 08:28:02 UTC (rev 269946)
+++ trunk/Source/WebCore/ChangeLog	2020-11-18 08:39:40 UTC (rev 269947)
@@ -1,3 +1,15 @@
+2020-11-18  Michael Catanzaro  <[email protected]>
+
+        [WPE][GTK] Update Safari version in user agent header for Safari 14
+        https://bugs.webkit.org/show_bug.cgi?id=219048
+
+        Reviewed by Carlos Garcia Campos.
+
+        See: https://webkit.org/blog/11340/new-webkit-features-in-safari-14/
+
+        * platform/glib/UserAgentGLib.cpp:
+        (WebCore::buildUserAgentString):
+
 2020-11-18  Carlos Garcia Campos  <[email protected]>
 
         Release assertion failure in Optional<WebCore::SimpleRange>::operator* via CompositeEditCommand::moveParagraphs

Modified: trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp (269946 => 269947)


--- trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp	2020-11-18 08:28:02 UTC (rev 269946)
+++ trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp	2020-11-18 08:39:40 UTC (rev 269947)
@@ -117,7 +117,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.appendLiteral("Version/13.0 ");
+        uaString.appendLiteral("Version/14.0 ");
 
     if (chassisType() == WTF::ChassisType::Mobile)
         uaString.appendLiteral("Mobile ");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to