Changeset 231726 in webkit
- Timestamp:
- May 11, 2018, 4:03:00 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r231723 r231726 1 2018-05-11 Megan Gardner <megan_gardner@apple.com> 2 3 Cleanup canPerformActionForWebView in relation to the webSelectionAssistant being removed 4 https://bugs.webkit.org/show_bug.cgi?id=185536 5 6 Reviewed by Tim Horton. 7 8 The _webSelectionAssistant is now always nil, therefor many of these checks are unnecessary. 9 Remove the check for a webSelection and clean up the logic surrounding those checks. 10 11 * UIProcess/ios/WKContentViewInteraction.mm: 12 (-[WKContentView canPerformActionForWebView:withSender:]): 13 1 14 2018-05-11 Brady Eidson <beidson@apple.com> 2 15 -
trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r231664 r231726 2210 2210 - (BOOL)canPerformActionForWebView:(SEL)action withSender:(id)sender 2211 2211 { 2212 BOOL hasWebSelection = _webSelectionAssistant && !CGRectIsEmpty(_webSelectionAssistant.get().selectionFrame);2213 2214 2212 if (action == @selector(_arrowKey:)) 2215 2213 return [self isFirstResponder]; … … 2236 2234 if (_page->editorState().isInPasswordField) 2237 2235 return NO; 2238 return hasWebSelection ||_page->editorState().selectionIsRange;2236 return _page->editorState().selectionIsRange; 2239 2237 } 2240 2238 2241 2239 if (action == @selector(_define:)) { 2242 if (_page->editorState().isInPasswordField || ! (hasWebSelection || _page->editorState().selectionIsRange))2240 if (_page->editorState().isInPasswordField || !_page->editorState().selectionIsRange) 2243 2241 return NO; 2244 2242 … … 2267 2265 #endif 2268 2266 2269 return hasWebSelection ||_page->editorState().selectionIsRange;2267 return _page->editorState().selectionIsRange; 2270 2268 } 2271 2269 2272 2270 if (action == @selector(_share:)) { 2273 if (_page->editorState().isInPasswordField || ! (hasWebSelection || _page->editorState().selectionIsRange))2271 if (_page->editorState().isInPasswordField || !_page->editorState().selectionIsRange) 2274 2272 return NO; 2275 2273 … … 2278 2276 2279 2277 if (action == @selector(_addShortcut:)) { 2280 if (_page->editorState().isInPasswordField || ! (hasWebSelection || _page->editorState().selectionIsRange))2278 if (_page->editorState().isInPasswordField || !_page->editorState().selectionIsRange) 2281 2279 return NO; 2282 2280 … … 2312 2310 2313 2311 if (action == @selector(selectAll:)) { 2314 if (_page->editorState().selectionIsNone || ![self hasContent]) 2315 return NO; 2316 if (!_page->editorState().selectionIsRange) 2312 if (!_page->editorState().selectionIsNone && !_page->editorState().selectionIsRange) 2317 2313 return YES; 2318 // Enable selectAll for non-editable text, where the user can't access 2319 // this command via long-press to get a caret. 2320 if (_page->editorState().isContentEditable) 2321 return NO; 2322 // Don't attempt selectAll with general web content. 2323 if (hasWebSelection) 2324 return NO; 2325 // FIXME: Only enable if the selection doesn't already span the entire document. 2326 return YES; 2314 return NO; 2327 2315 } 2328 2316
Note:
See TracChangeset
for help on using the changeset viewer.