NEW 201195
REGRESSION(iOS 13): Can't type in fields on united.com sign-up form in WKWebView
https://bugs.webkit.org/show_bug.cgi?id=201195
Summary REGRESSION(iOS 13): Can't type in fields on united.com sign-up form in WKWebView
Ali Juma
Reported 2019-08-27 12:53:09 PDT
This bug reproduces on iOS 13 beta 8 in WKWebView (tested in Chrome, Firefox, and Edge) but for some reason doesn't reproduce in Safari. Steps to reproduce: 1. Visit https://www.united.com/ual/en/US/account/enroll/default 2. Scroll down to the form and tap on a field (e.g., "First name") Expected result: The field is focused and the keyboard is shown. Actual result: Can't focus the field, and the keyboard is not shown.
Attachments
Alexey Proskuryakov
Comment 1 2019-08-27 17:53:16 PDT
Do quirks not work in WKWebView? We would have plenty of regressions if so!
Radar WebKit Bug Importer
Comment 2 2019-08-27 17:53:53 PDT
Wenson Hsieh
Comment 3 2019-08-27 18:35:51 PDT
(In reply to Alexey Proskuryakov from comment #1) > Do quirks not work in WKWebView? We would have plenty of regressions if so! That’s right — quirks are disabled by default (NeedsSiteSpecificQuirks in WebPreferences.yaml), but enabled in Safari via SPI. It looks like Quirks::shouldIgnoreContentChange might be relevant here.
Ryosuke Niwa
Comment 4 2019-08-27 22:05:54 PDT
FWIW, you can probably implement a site specific quirk on united.com in Chrome for iOS by hiding the content mentioned in https://trac.webkit.org/changeset/248463/webkit using `display: none`. Obviously, reaching out to united.com would work too.
Ali Juma
Comment 5 2019-08-29 08:58:50 PDT
(In reply to Ryosuke Niwa from comment #4) > FWIW, you can probably implement a site specific quirk on united.com in > Chrome for iOS by hiding the content mentioned in > https://trac.webkit.org/changeset/248463/webkit using `display: none`. Thanks for pointing this out! (In reply to Wenson Hsieh from comment #3) > (In reply to Alexey Proskuryakov from comment #1) > > Do quirks not work in WKWebView? We would have plenty of regressions if so! > > That’s right — quirks are disabled by default (NeedsSiteSpecificQuirks in > WebPreferences.yaml), but enabled in Safari via SPI. I've filed feedback FB7155444 for getting quirks enabled or for changing the SPI to public API.
Ryosuke Niwa
Comment 6 2019-08-29 12:52:36 PDT
(In reply to Ali Juma from comment #5) > (In reply to Ryosuke Niwa from comment #4) > > FWIW, you can probably implement a site specific quirk on united.com in > > Chrome for iOS by hiding the content mentioned in > > https://trac.webkit.org/changeset/248463/webkit using `display: none`. > > Thanks for pointing this out! > > > (In reply to Wenson Hsieh from comment #3) > > (In reply to Alexey Proskuryakov from comment #1) > > > Do quirks not work in WKWebView? We would have plenty of regressions if so! > > > > That’s right — quirks are disabled by default (NeedsSiteSpecificQuirks in > > WebPreferences.yaml), but enabled in Safari via SPI. > > I've filed feedback FB7155444 for getting quirks enabled or for changing the > SPI to public API. That would be <rdar://problem/54838486>.
Note You need to log in before you can comment on or make changes to this bug.