WebKit Bugzilla
Attachment 370129 Details for
Bug 197992
: Fix a typo in some user agent string logic
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197992-20190517113011.patch (text/plain), 1.66 KB, created by
Wenson Hsieh
on 2019-05-17 11:30:11 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Wenson Hsieh
Created:
2019-05-17 11:30:11 PDT
Size:
1.66 KB
patch
obsolete
>Subversion Revision: 245460 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index e4ededdeb422d8d095128f2b7ed6a73142c365bf..d21d3415840628d36391e8d27a185fd4982aaffa 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,16 @@ >+2019-05-17 Wenson Hsieh <wenson_hsieh@apple.com> >+ >+ Fix a typo in some user agent string logic >+ https://bugs.webkit.org/show_bug.cgi?id=197992 >+ <rdar://problem/50895962> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Adjust the major version number for the desktop user agent string. >+ >+ * platform/ios/UserAgentIOS.mm: >+ (WebCore::standardUserAgentWithApplicationName): >+ > 2019-05-16 Carlos Garcia Campos <cgarcia@igalia.com> > > [GTK] Need WebKitContextMenuItemType to open emoji picker >diff --git a/Source/WebCore/platform/ios/UserAgentIOS.mm b/Source/WebCore/platform/ios/UserAgentIOS.mm >index d883510575ab5e5cfa30e3fb2c7972d233d7ad7e..8cdb70e72024775d402d51fe8afc111572ffa680 100644 >--- a/Source/WebCore/platform/ios/UserAgentIOS.mm >+++ b/Source/WebCore/platform/ios/UserAgentIOS.mm >@@ -83,7 +83,7 @@ String standardUserAgentWithApplicationName(const String& applicationName, UserA > { > 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,
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197992
: 370129