Title: [256358] branches/safari-609.1.17.0-branch/Source/WebCore
Revision
256358
Author
repst...@apple.com
Date
2020-02-11 13:38:14 -0800 (Tue, 11 Feb 2020)

Log Message

Cherry-pick r256230. rdar://problem/59335800

    Adjust the minor version number for the desktop user agent string.
    https://bugs.webkit.org/show_bug.cgi?id=207498
    <rdar://problem/59274765>

    Patch by Keith Rollin <krol...@apple.com> on 2020-02-10
    Reviewed by Wenson Hsieh.

    This helps with Netflix compatibility on the iPad.

    No new tests -- no new or changed functionality.

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

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

Modified Paths

Diff

Modified: branches/safari-609.1.17.0-branch/Source/WebCore/ChangeLog (256357 => 256358)


--- branches/safari-609.1.17.0-branch/Source/WebCore/ChangeLog	2020-02-11 21:38:12 UTC (rev 256357)
+++ branches/safari-609.1.17.0-branch/Source/WebCore/ChangeLog	2020-02-11 21:38:14 UTC (rev 256358)
@@ -1,5 +1,40 @@
 2020-02-11  Russell Epstein  <repst...@apple.com>
 
+        Cherry-pick r256230. rdar://problem/59335800
+
+    Adjust the minor version number for the desktop user agent string.
+    https://bugs.webkit.org/show_bug.cgi?id=207498
+    <rdar://problem/59274765>
+    
+    Patch by Keith Rollin <krol...@apple.com> on 2020-02-10
+    Reviewed by Wenson Hsieh.
+    
+    This helps with Netflix compatibility on the iPad.
+    
+    No new tests -- no new or changed functionality.
+    
+    * platform/ios/UserAgentIOS.mm:
+    (WebCore::standardUserAgentWithApplicationName):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@256230 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-02-10  Keith Rollin  <krol...@apple.com>
+
+            Adjust the minor version number for the desktop user agent string.
+            https://bugs.webkit.org/show_bug.cgi?id=207498
+            <rdar://problem/59274765>
+
+            Reviewed by Wenson Hsieh.
+
+            This helps with Netflix compatibility on the iPad.
+
+            No new tests -- no new or changed functionality.
+
+            * platform/ios/UserAgentIOS.mm:
+            (WebCore::standardUserAgentWithApplicationName):
+
+2020-02-11  Russell Epstein  <repst...@apple.com>
+
         Cherry-pick r256214. rdar://problem/59349590
 
     WebContent jetsams on Sony lens webpage due to spike of IOSurfaces

Modified: branches/safari-609.1.17.0-branch/Source/WebCore/platform/ios/UserAgentIOS.mm (256357 => 256358)


--- branches/safari-609.1.17.0-branch/Source/WebCore/platform/ios/UserAgentIOS.mm	2020-02-11 21:38:12 UTC (rev 256357)
+++ branches/safari-609.1.17.0-branch/Source/WebCore/platform/ios/UserAgentIOS.mm	2020-02-11 21:38:14 UTC (rev 256358)
@@ -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_15) AppleWebKit/605.1.15 (KHTML, like Gecko)", appNameSuffix);
+        return makeString("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko)", appNameSuffix);
     }
 
     // FIXME: Is this needed any more? Mac doesn't have this check,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to