RESOLVED FIXED 181353
Show Keyboard when re-launching WKWebView with a previously focused element
https://bugs.webkit.org/show_bug.cgi?id=181353
Summary Show Keyboard when re-launching WKWebView with a previously focused element
Megan Gardner
Reported 2018-01-05 15:56:14 PST
Show Keyboard when re-launching WKWebView with a previously focused element
Attachments
Patch (15.24 KB, patch)
2018-01-05 16:01 PST, Megan Gardner
no flags
Patch (14.26 KB, patch)
2018-01-05 17:43 PST, Megan Gardner
no flags
Patch (14.27 KB, patch)
2018-01-05 17:49 PST, Megan Gardner
thorton: review+
Megan Gardner
Comment 1 2018-01-05 16:01:03 PST
Tim Horton
Comment 2 2018-01-05 17:03:20 PST
Comment on attachment 330603 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=330603&action=review > Source/WebKit/UIProcess/PageClient.h:291 > + virtual void startAssistingNode(const AssistedNodeInformation&, bool userIsInteracting, bool blurPreviousNode, API::Object* userData, bool changingActivityState) = 0; Should stick this before the userData, that is traditionally the last argument > Source/WebKit/UIProcess/ios/WKContentView.h:30 > -#import <UIKit/UIKit.h> > +#import <UIKit/UIKitCore.h> Definitely not. > Source/WebKit/UIProcess/ios/WKContentViewInteraction.h:285 > +- (void)_startAssistingNode:(const WebKit::AssistedNodeInformation&)information userIsInteracting:(BOOL)userIsInteracting blurPreviousNode:(BOOL)blurPreviousNode userObject:(NSObject <NSSecureCoding> *)userObject changingActivityState:(bool)changingActivityState; Ditto the move-it-before-userObject thing > Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm:716 > +void WebPageProxy::startAutoscrollAtPosition(const WebCore::FloatPoint& positionInWidow) Is this relevant? Also, widow? > Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm:896 > + m_deferredNodeAssistanceArguments = std::make_unique<NodeAssistanceArguments>(NodeAssistanceArguments { information, userIsInteracting, blurPreviousNode, userDataObject , changingActivityState}); Weird extraneous space > Source/WebKit/WebProcess/WebPage/WebPage.cpp:2717 > + SetForScope<bool> changingActivityStateChange { m_changingActivityState, true }; You may want to scope this more closely to the activity state change? Can any of these other things call into script? Actually, can /any/ of these things synchronously call into script?
Megan Gardner
Comment 3 2018-01-05 17:43:34 PST
Tim Horton
Comment 4 2018-01-05 17:46:31 PST
Comment on attachment 330623 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=330623&action=review > Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm:3868 > +- (void)_startAssistingNode:(const AssistedNodeInformation&)information userIsInteracting:(BOOL)userIsInteracting blurPreviousNode:(BOOL)blurPreviousNode changingActivityState:(BOOL)changingActivityState userObject:(NSObject <NSSecureCoding> *)userObject You added a space at the end for some reason. > Source/WebKit/WebProcess/WebPage/WebPage.cpp:2727 > + SetForScope<bool> changingActivityStateChange { m_changingActivityState, true }; I see the logic in the name of the local but I also don’t know that it reads so great :)
Megan Gardner
Comment 5 2018-01-05 17:49:21 PST
Megan Gardner
Comment 6 2018-01-05 17:54:47 PST
Radar WebKit Bug Importer
Comment 7 2018-01-05 17:55:01 PST
Note You need to log in before you can comment on or make changes to this bug.