Title: [245554] branches/safari-608.1.24.20-branch/Source/WebCore
Revision
245554
Author
[email protected]
Date
2019-05-20 20:21:21 -0700 (Mon, 20 May 2019)

Log Message

Cherry-pick r245472. rdar://problem/50895962

    Fix a typo in some user agent string logic
    https://bugs.webkit.org/show_bug.cgi?id=197992
    <rdar://problem/50895962>

    Reviewed by Brent Fulgham.

    Adjust the major version number for the desktop user agent string.

    * platform/ios/UserAgentIOS.mm:
    (WebCore::standardUserAgentWithApplicationName):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245472 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-608.1.24.20-branch/Source/WebCore/ChangeLog (245553 => 245554)


--- branches/safari-608.1.24.20-branch/Source/WebCore/ChangeLog	2019-05-21 03:21:18 UTC (rev 245553)
+++ branches/safari-608.1.24.20-branch/Source/WebCore/ChangeLog	2019-05-21 03:21:21 UTC (rev 245554)
@@ -1,5 +1,36 @@
 2019-05-20  Kocsen Chung  <[email protected]>
 
+        Cherry-pick r245472. rdar://problem/50895962
+
+    Fix a typo in some user agent string logic
+    https://bugs.webkit.org/show_bug.cgi?id=197992
+    <rdar://problem/50895962>
+    
+    Reviewed by Brent Fulgham.
+    
+    Adjust the major version number for the desktop user agent string.
+    
+    * platform/ios/UserAgentIOS.mm:
+    (WebCore::standardUserAgentWithApplicationName):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@245472 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-05-17  Wenson Hsieh  <[email protected]>
+
+            Fix a typo in some user agent string logic
+            https://bugs.webkit.org/show_bug.cgi?id=197992
+            <rdar://problem/50895962>
+
+            Reviewed by Brent Fulgham.
+
+            Adjust the major version number for the desktop user agent string.
+
+            * platform/ios/UserAgentIOS.mm:
+            (WebCore::standardUserAgentWithApplicationName):
+
+2019-05-20  Kocsen Chung  <[email protected]>
+
         Cherry-pick r245220. rdar://problem/50686229
 
     When the set of backing-sharing layers changes, we need to issue a repaint

Modified: branches/safari-608.1.24.20-branch/Source/WebCore/platform/ios/UserAgentIOS.mm (245553 => 245554)


--- branches/safari-608.1.24.20-branch/Source/WebCore/platform/ios/UserAgentIOS.mm	2019-05-21 03:21:18 UTC (rev 245553)
+++ branches/safari-608.1.24.20-branch/Source/WebCore/platform/ios/UserAgentIOS.mm	2019-05-21 03:21:21 UTC (rev 245554)
@@ -83,7 +83,7 @@
 {
     if (type == UserAgentType::Desktop) {
         String appNameSuffix = applicationName.isEmpty() ? "" : makeString(" ", applicationName);
-        return makeString("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14) AppleWebKit/605.1.15 (KHTML, like Gecko)", appNameSuffix);
+        return makeString("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko)", appNameSuffix);
     }
 
     // FIXME: Is this needed any more? Mac doesn't have this check,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to