Changeset 225623 in webkit


Ignore:
Timestamp:
Dec 7, 2017 1:32:53 AM (6 years ago)
Author:
Michael Catanzaro
Message:

[WPE][GTK] Update user agent quirk version strings
https://bugs.webkit.org/show_bug.cgi?id=180474

Reviewed by Carlos Garcia Campos.

  • platform/UserAgentQuirks.cpp:

(WebCore::UserAgentQuirks::stringForQuirk):

  • platform/glib/UserAgentGLib.cpp:

(WebCore::platformVersionForUAString):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r225622 r225623  
     12017-12-07  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [WPE][GTK] Update user agent quirk version strings
     4        https://bugs.webkit.org/show_bug.cgi?id=180474
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * platform/UserAgentQuirks.cpp:
     9        (WebCore::UserAgentQuirks::stringForQuirk):
     10        * platform/glib/UserAgentGLib.cpp:
     11        (WebCore::platformVersionForUAString):
     12
    1132017-12-06  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/WebCore/platform/UserAgentQuirks.cpp

    r217203 r225623  
    119119        return ASCIILiteral("Chrome/58.0.3029.81");
    120120    case NeedsMacintoshPlatform:
    121         return ASCIILiteral("Macintosh; Intel Mac OS X 10_12");
     121        // Frozen per https://bugs.webkit.org/show_bug.cgi?id=180365
     122        return ASCIILiteral("Macintosh; Intel Mac OS X 10_13_4");
    122123    case NeedsLinuxDesktopPlatform:
    123124        return ASCIILiteral("X11; Linux x86_64");
  • trunk/Source/WebCore/platform/glib/UserAgentGLib.cpp

    r220713 r225623  
    6464    // We will always claim to be Safari in Intel Mac OS X, since Safari without
    6565    // OS X or anything on ARM triggers mobile versions of some websites.
    66     //
    67     // FIXME: The final result should include OS version, e.g. "Intel Mac OS X 10_8_4".
    68     static NeverDestroyed<const String> uaOSVersion(MAKE_STATIC_STRING_IMPL("Intel Mac OS X"));
     66    // Version is frozen per https://bugs.webkit.org/show_bug.cgi?id=180365
     67    static NeverDestroyed<const String> uaOSVersion(MAKE_STATIC_STRING_IMPL("Intel Mac OS X 10_13_4"));
    6968    return uaOSVersion;
    7069#endif
Note: See TracChangeset for help on using the changeset viewer.