Changeset 248928 in webkit


Ignore:
Timestamp:
Aug 20, 2019 5:54:48 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[iOS] REGRESSION (248501): gmail.com images are still not shown on some versions of iPhone iOS13
https://bugs.webkit.org/show_bug.cgi?id=200948

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2019-08-20
Reviewed by Tim Horton.

Apply the gmail.com quirk for all iPhone iOS versions till the gmail.com
bug is fixed.

  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::platformUserAgent const):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r248918 r248928  
     12019-08-20  Said Abou-Hallawa  <sabouhallawa@apple.com>
     2
     3        [iOS] REGRESSION (248501): gmail.com images are still not shown on some versions of iPhone iOS13
     4        https://bugs.webkit.org/show_bug.cgi?id=200948
     5
     6        Reviewed by Tim Horton.
     7
     8        Apply the gmail.com quirk for all iPhone iOS versions till the gmail.com
     9        bug is fixed.
     10
     11        * WebProcess/WebPage/ios/WebPageIOS.mm:
     12        (WebKit::WebPage::platformUserAgent const):
     13
    1142019-08-20  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm

    r248713 r248928  
    37563756        return String();
    37573757
    3758     if (document->quirks().shouldAvoidUsingIOS13ForGmail() && osNameForUserAgent() == "iPhone OS" && systemMarketingVersionForUserAgentString() == "13_1")
     3758    if (document->quirks().shouldAvoidUsingIOS13ForGmail() && osNameForUserAgent() == "iPhone OS")
    37593759        return standardUserAgentWithApplicationName({ }, "12_1_3");
    37603760
Note: See TracChangeset for help on using the changeset viewer.