RESOLVED FIXED 220454
Double tap to select does not work if the page clears selections on tap, like grammarly.com does
https://bugs.webkit.org/show_bug.cgi?id=220454
Summary Double tap to select does not work if the page clears selections on tap, like...
Megan Gardner
Reported 2021-01-07 20:05:41 PST
Double tap to select does not work if the page clears selections on tap, like Grammerly.com does.
Attachments
Patch (4.55 KB, patch)
2021-01-07 20:07 PST, Megan Gardner
no flags
Patch (11.30 KB, patch)
2021-01-08 16:37 PST, Megan Gardner
no flags
Patch (11.30 KB, patch)
2021-01-08 17:01 PST, Megan Gardner
no flags
Patch (12.19 KB, patch)
2021-01-11 11:20 PST, Megan Gardner
no flags
Patch (12.21 KB, patch)
2021-01-11 11:27 PST, Megan Gardner
no flags
Patch for landing (12.37 KB, patch)
2021-01-11 16:22 PST, Megan Gardner
no flags
Megan Gardner
Comment 1 2021-01-07 20:07:49 PST
Megan Gardner
Comment 2 2021-01-08 16:37:39 PST
Wenson Hsieh
Comment 3 2021-01-08 16:48:50 PST
Comment on attachment 417313 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=417313&action=review The general approach (deferring the selection change when performing a synthetic click) seems reasonable. Should we also invoke the selection change completion handler in the case where we don't end up completing the synthetic click? > Source/WebKit/ChangeLog:15 > + Reviewed by NOBODY (OOPS!). Nit - reviewed by line should move up before the description. > Source/WebKit/WebProcess/WebPage/WebPage.h:1830 > + WTF::Function<void()> _selectionChangedBlock; This should probably be something like `m_selectionChangedHandler` or `m_selectionChangedFunction`, since it's not an Objective-C block (and it's also a member of a C++ class). > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:2137 > + Nit - extra newline here. > LayoutTests/fast/events/touch/ios/double-tap-on-editable-content-for-selection-with-clear-on-touch.html:52 > + var editableElement =document.getElementById('editable'); Nit - space after the =
Megan Gardner
Comment 4 2021-01-08 17:01:15 PST
Megan Gardner
Comment 5 2021-01-11 11:20:49 PST
Megan Gardner
Comment 6 2021-01-11 11:27:06 PST
Wenson Hsieh
Comment 7 2021-01-11 13:00:39 PST
Comment on attachment 417394 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=417394&action=review > Source/WebKit/ChangeLog:9 > + Double tap to select content did not work on grammerly.com on iPad because this is a desktop website run on a touch-based device, Nit - grammerly.com => grammarly.com > Source/WebKit/ChangeLog:14 > + these two events. This makes for a more expected change of events, and does not let grammerly.com clear a valid selection based off of synthetic Ditto. > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:856 > + if (auto selectionChangedHandler = std::exchange(m_selectionChangedHandler, nil)) Nit - nil => { }. > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:1172 > + if (auto selectionChangedHandler = std::exchange(m_selectionChangedHandler, nil)) Nit - nil => { }. > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:1191 > + if (auto selectionChangedHandler = std::exchange(m_selectionChangedHandler, nil)) Nit - nil => { }. > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:2141 > + We should assert that `m_selectionChangedHandler` is not set here, and/or invoke the previous handler if it is set. > Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm:2142 > + m_selectionChangedHandler = [point, granularity, isInteractingWithFocusedElement, completionHandler = WTFMove(completionHandler), webPage = makeWeakPtr(*this), this]()mutable { Nit - space before the `mutable`.
Megan Gardner
Comment 8 2021-01-11 16:22:51 PST
Created attachment 417420 [details] Patch for landing
Megan Gardner
Comment 9 2021-01-11 16:24:55 PST
EWS
Comment 10 2021-01-11 16:54:41 PST
Committed r271386: <https://trac.webkit.org/changeset/271386> All reviewed patches have been landed. Closing bug and clearing flags on attachment 417420 [details].
Note You need to log in before you can comment on or make changes to this bug.