Title: [256230] trunk/Source/WebCore
Revision
256230
Author
[email protected]
Date
2020-02-10 16:44:31 -0800 (Mon, 10 Feb 2020)

Log Message

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 <[email protected]> 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (256229 => 256230)


--- trunk/Source/WebCore/ChangeLog	2020-02-11 00:30:48 UTC (rev 256229)
+++ trunk/Source/WebCore/ChangeLog	2020-02-11 00:44:31 UTC (rev 256230)
@@ -1,3 +1,18 @@
+2020-02-10  Keith Rollin  <[email protected]>
+
+        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-10  Wenson Hsieh  <[email protected]>
 
         [iOS] REGRESSION (r255592): The simulated mouse event dispatch quirk should not be on by default

Modified: trunk/Source/WebCore/platform/ios/UserAgentIOS.mm (256229 => 256230)


--- trunk/Source/WebCore/platform/ios/UserAgentIOS.mm	2020-02-11 00:30:48 UTC (rev 256229)
+++ trunk/Source/WebCore/platform/ios/UserAgentIOS.mm	2020-02-11 00:44:31 UTC (rev 256230)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to