Changeset 247332 in webkit


Ignore:
Timestamp:
Jul 10, 2019 4:36:01 PM (5 years ago)
Author:
jonlee@apple.com
Message:

Opt trello.com to mobile UA
https://bugs.webkit.org/show_bug.cgi?id=199686
rdar://problem/51708119

Reviewed by Wenson Hsieh.

  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::desktopClassBrowsingRecommendedForRequest): Currently the desktop version
of the site prevents users from tapping cards to edit them. Opt trello into the mobile
UA for now.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r247328 r247332  
     12019-07-10  Jon Lee  <jonlee@apple.com>
     2
     3        Opt trello.com to mobile UA
     4        https://bugs.webkit.org/show_bug.cgi?id=199686
     5        rdar://problem/51708119
     6
     7        Reviewed by Wenson Hsieh.
     8
     9        * UIProcess/ios/WebPageProxyIOS.mm:
     10        (WebKit::desktopClassBrowsingRecommendedForRequest): Currently the desktop version
     11        of the site prevents users from tapping cards to edit them. Opt trello into the mobile
     12        UA for now.
     13
    1142019-07-10  Daniel Bates  <dabates@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm

    r246892 r247332  
    13041304        return false;
    13051305
     1306    if (equalLettersIgnoringASCIICase(host, "trello.com") || host.endsWithIgnoringASCIICase(".trello.com"))
     1307        return false;
     1308
    13061309    return true;
    13071310}
Note: See TracChangeset for help on using the changeset viewer.