RESOLVED FIXED 175896
Add WKUIDelegatePrivate callbacks corresponding to WKPageUIClient's takeFocus, focus, and unfocus
https://bugs.webkit.org/show_bug.cgi?id=175896
Summary Add WKUIDelegatePrivate callbacks corresponding to WKPageUIClient's takeFocus...
Alex Christensen
Reported 2017-08-23 11:58:04 PDT
Add WKUIDelegatePrivate callbacks corresponding to WKPageUIClient's takeFocus, focus, and unfocus
Attachments
Patch (12.27 KB, patch)
2017-08-23 12:01 PDT, Alex Christensen
no flags
Patch (12.20 KB, patch)
2017-08-23 12:40 PDT, Alex Christensen
no flags
Patch (12.25 KB, patch)
2017-08-23 13:03 PDT, Alex Christensen
no flags
Alex Christensen
Comment 1 2017-08-23 12:01:44 PDT
Tim Horton
Comment 2 2017-08-23 12:15:01 PDT
Comment on attachment 318893 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=318893&action=review > Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h:130 > -- (void)_webViewShow:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); > +- (void)_showWebView:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); > +- (void)_focusWebView:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); > +- (void)_unfocusWebView:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA)); > +- (void)_webView:(WKWebView *)webView takeFocus:(_WKFocusDirection)direction WK_API_AVAILABLE(macosx(WK_MAC_TBA)); I have another question. Why are all these things Mac only? They don't seem to be, underneath. Platform-specific things should be the exception, not the rule.
Alex Christensen
Comment 3 2017-08-23 12:40:54 PDT
Alex Christensen
Comment 4 2017-08-23 12:42:00 PDT
(In reply to Tim Horton from comment #2) > I have another question. Why are all these things Mac only? They don't seem > to be, underneath. Platform-specific things should be the exception, not the > rule. Focus and keyboard events are quite different on iOS. _webViewShow didn't work on iOS and it's not needed. We could fix it and add it later if needed.
Alex Christensen
Comment 5 2017-08-23 13:03:42 PDT
Alex Christensen
Comment 6 2017-08-23 13:36:03 PDT
Radar WebKit Bug Importer
Comment 7 2017-08-23 13:36:35 PDT
Alex Christensen
Comment 8 2017-08-23 14:53:33 PDT
Note You need to log in before you can comment on or make changes to this bug.