RESOLVED FIXED238326
Add Captive Portal alert to WKWebView
https://bugs.webkit.org/show_bug.cgi?id=238326
Summary Add Captive Portal alert to WKWebView
clopez1
Reported 2022-03-24 07:57:05 PDT
Add a Captive Portal alert in WKWebView
Attachments
Patch (2.37 KB, patch)
2022-03-24 08:51 PDT, clopez1
no flags
Patch for landing (3.31 KB, patch)
2022-03-29 12:03 PDT, Brent Fulgham
no flags
Patch for landing (2.49 KB, patch)
2022-03-29 12:14 PDT, Brent Fulgham
no flags
clopez1
Comment 1 2022-03-24 08:51:42 PDT
Geoffrey Garen
Comment 2 2022-03-24 09:46:21 PDT
Comment on attachment 455643 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=455643&action=review r=me > Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm:1560 > + [self _presentCaptivePortalModeAlertIfNeeded]; Views can move in and out of windows frequently, for example I believe they do so when switching tabs. I recommend double-checking that _presentCaptivePortalModeAlertIfNeeded is super efficient in the "do nothing" case.
clopez1
Comment 3 2022-03-25 10:12:43 PDT
Comment on attachment 455643 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=455643&action=review >> Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm:1560 >> + [self _presentCaptivePortalModeAlertIfNeeded]; > > Views can move in and out of windows frequently, for example I believe they do so when switching tabs. I recommend double-checking that _presentCaptivePortalModeAlertIfNeeded is super efficient in the "do nothing" case. Agreed. `_presentCaptivePortalModeAlertIfNeeded` should be efficient, especially for subsequent calls.
Brent Fulgham
Comment 4 2022-03-25 12:08:18 PDT
Comment on attachment 455643 [details] Patch The iOS tests are failing for other patches -- I don't see how they are related to this change. Re-adding commit-queue.
EWS
Comment 5 2022-03-25 13:48:17 PDT
Committed r291884 (248883@main): <https://commits.webkit.org/248883@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 455643 [details].
Radar WebKit Bug Importer
Comment 6 2022-03-25 13:49:18 PDT
Simon Fraser (smfr)
Comment 7 2022-03-25 20:01:46 PDT
This broke the internal iOS build.
WebKit Commit Bot
Comment 8 2022-03-25 20:02:30 PDT
Re-opened since this is blocked by bug 238405
Brent Fulgham
Comment 9 2022-03-29 11:16:42 PDT
Comment on attachment 455643 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=455643&action=review > Source/WebKit/UIProcess/API/ios/WKWebViewIOS.h:28 > +#if USE(APPLE_INTERNAL_SDK) && PLATFORM(IOS_FAMILY) I think this might avoid breaking the build: #if USE(APPLE_INTERNAL_SDK) && PLATFORM(IOS_FAMILY) && __has_include(<WebKitAdditions/WKWebViewAdditions.h>)
Brent Fulgham
Comment 10 2022-03-29 12:03:04 PDT
Created attachment 456048 [details] Patch for landing
EWS
Comment 11 2022-03-29 12:13:20 PDT
ChangeLog entry in Source/WebKit/ChangeLog contains OOPS!.
Brent Fulgham
Comment 12 2022-03-29 12:14:40 PDT
Created attachment 456049 [details] Patch for landing
EWS
Comment 13 2022-03-29 13:40:58 PDT
Committed r292065 (248999@main): <https://commits.webkit.org/248999@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 456049 [details].
Note You need to log in before you can comment on or make changes to this bug.