RESOLVED FIXED Bug 239914
The isYahooMail quirk is specific to PLATFORM(IOS_FAMILY)
https://bugs.webkit.org/show_bug.cgi?id=239914
Summary The isYahooMail quirk is specific to PLATFORM(IOS_FAMILY)
Don Olmstead
Reported 2022-04-29 15:16:17 PDT
Found because of an unused function warning for isYahooMail.
Attachments
Patch (1.38 KB, patch)
2022-04-29 15:22 PDT, Don Olmstead
no flags
Don Olmstead
Comment 1 2022-04-29 15:22:34 PDT
EWS
Comment 2 2022-04-29 20:38:29 PDT
Committed r293641 (250145@main): <https://commits.webkit.org/250145@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 458612 [details].
Radar WebKit Bug Importer
Comment 3 2022-04-29 20:39:14 PDT
Darin Adler
Comment 4 2022-04-30 13:55:21 PDT
Comment on attachment 458612 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=458612&action=review > Source/WebCore/ChangeLog:10 > + The isYahooMail check is incorrectly guarded by ENABLE(PUBLIC_SUFFIX_LIST) when the only > + using this function is guarded by ENABLE(IOS_TOUCH_EVENTS) and PLATFORM(IOS_FAMILY). Use > + PLATFORM(IOS_FAMILY) since ENABLE(IOS_TOUCH_EVENTS) implies that anyways. I suppose this is a losing battle at this point, but I’ve tried to always use something more specific than the PLATFORM macro whenever possible. So in this case I would have used ENABLE(IOS_TOUCH_EVENTS).
Note You need to log in before you can comment on or make changes to this bug.