Changeset 236619 in webkit
- Timestamp:
- Sep 28, 2018, 4:02:41 PM (7 years ago)
- Location:
- trunk/Source
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r236618 r236619 1 2018-09-28 Daniel Bates <dabates@apple.com> 2 3 [iOS] Allow programmatic focus when hardware keyboard is attached 4 https://bugs.webkit.org/show_bug.cgi?id=190017 5 <rdar://problem/42270463> 6 7 Reviewed by Wenson Hsieh. 8 9 Add support for checking if the embedding client is WebKitTestRunner and export isDumpRenderTree() 10 so that we can make use of it from WebKit. We will make use of these functions to keep the current 11 behavior of disallowing programmatic focus when running tests in these apps. This is needed to 12 keep testing deterministic. Otherwise, test results would be dependent on whether a hardware 13 keyboard is attached. When running tests in Simulator.app the hardware keyboard may also not be 14 connected (i.e. Hardware > Keyboard > Connect Hardware Keyboard is disabled). 15 16 * platform/RuntimeApplicationChecks.h: 17 * platform/cocoa/RuntimeApplicationChecksCocoa.mm: 18 (WebCore::IOSApplication::isWebKitTestRunner): Added. 19 1 20 2018-09-28 Ryosuke Niwa <rniwa@webkit.org> 2 21 -
trunk/Source/WebCore/platform/RuntimeApplicationChecks.h
r234447 r236619 80 80 WEBCORE_EXPORT bool isMobileSafari(); 81 81 WEBCORE_EXPORT bool isWebBookmarksD(); 82 bool isDumpRenderTree(); 82 WEBCORE_EXPORT bool isWebKitTestRunner(); 83 WEBCORE_EXPORT bool isDumpRenderTree(); 83 84 bool isMobileStore(); 84 85 bool isSpringBoard(); -
trunk/Source/WebCore/platform/cocoa/RuntimeApplicationChecksCocoa.mm
r236474 r236619 218 218 } 219 219 220 bool IOSApplication::isWebKitTestRunner() 221 { 222 // We use a prefix match instead of strict equality since multiple instances of WebKitTestRunner 223 // may be launched, where the bundle identifier of each instance has a unique suffix. 224 static bool isWebKitTestRunner = applicationBundleIsEqualTo("org.webkit.WebKitTestRunnerApp"_s); // e.g. org.webkit.WebKitTestRunnerApp0 225 return isWebKitTestRunner; 226 } 227 220 228 bool IOSApplication::isMobileStore() 221 229 { -
trunk/Source/WebKit/ChangeLog
r236612 r236619 1 2018-09-28 Daniel Bates <dabates@apple.com> 2 3 [iOS] Allow programmatic focus when hardware keyboard is attached 4 https://bugs.webkit.org/show_bug.cgi?id=190017 5 <rdar://problem/42270463> 6 7 Reviewed by Wenson Hsieh. 8 9 Make the experience of using iOS with a hardware keyboard more desktop-like by allowing 10 programmatic focusing of editable elements. 11 12 * Platform/spi/ios/UIKitSPI.h: Forward declare SPI. 13 * Shared/NativeWebKeyboardEvent.h: 14 * Shared/ios/NativeWebKeyboardEventIOS.mm: 15 (WebKit::isInHardwareKeyboardMode): Returns whether we are in hardware keyboard mode. In DumpRenderTree 16 and WebKitTestRunner this function always returns false to keep test results deterministic. 17 * UIProcess/ios/WKContentViewInteraction.mm: 18 (-[WKContentView _startAssistingNode:userIsInteracting:blurPreviousNode:changingActivityState:userObject:]): 19 Allow starting an input session if we are in hardware keyboard mode. 20 * WebProcess/WebPage/ios/WebPageIOS.mm: 21 (WebKit::WebPage::platformEditorState const): Send the full editor state if we are in hardware 22 keyboard mode regardless of whether layout has been performed so that UIProcess can update UI, 23 including the position of the caret, immediately. 24 1 25 2018-09-28 Ryosuke Niwa <rniwa@webkit.org> 2 26 -
trunk/Source/WebKit/Platform/spi/ios/UIKitSPI.h
r236417 r236619 248 248 - (void)geometryChangeDone:(BOOL)keyboardVisible; 249 249 - (void)prepareForGeometryChange; 250 + (BOOL)isInHardwareKeyboardMode; 250 251 @end 251 252 -
trunk/Source/WebKit/Shared/NativeWebKeyboardEvent.h
r230461 r236619 106 106 }; 107 107 108 // FIXME: Find a better place for this. 109 #if PLATFORM(IOS) 110 bool isInHardwareKeyboardMode(); 111 #endif 112 108 113 } // namespace WebKit 109 114 -
trunk/Source/WebKit/Shared/ios/NativeWebKeyboardEventIOS.mm
r212376 r236619 29 29 #if PLATFORM(IOS) 30 30 31 #import "UIKitSPI.h" 31 32 #import "WebIOSEventFactory.h" 33 #import <WebCore/RuntimeApplicationChecks.h> 32 34 33 35 namespace WebKit { 36 37 bool isInHardwareKeyboardMode() 38 { 39 return !WebCore::IOSApplication::isDumpRenderTree() && !WebCore::IOSApplication::isWebKitTestRunner() && [UIKeyboard isInHardwareKeyboardMode]; 40 } 34 41 35 42 NativeWebKeyboardEvent::NativeWebKeyboardEvent(::WebEvent *event) -
trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm
r236491 r236619 4192 4192 #else 4193 4193 || _isChangingFocus 4194 || isInHardwareKeyboardMode() 4194 4195 #endif 4195 4196 #if ENABLE(DRAG_SUPPORT) -
trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm
r236530 r236619 38 38 #import "InteractionInformationAtPosition.h" 39 39 #import "Logging.h" 40 #import "NativeWebKeyboardEvent.h" 40 41 #import "PluginView.h" 41 42 #import "PrintInfo.h" … … 192 193 } 193 194 194 // We only set the remaining EditorState entries if the layout is done. To compute these195 // entries, we need the layout to be done and we don't want to trigger a synchronous196 // layout as this would be bad for performance. If we have a composition, we send everything197 // right away as the UIProcess needs the caretRects ASAP for marked text.198 bool frameViewHasFinishedLayout = frame.view() && !frame.view()->needsLayout();199 if (shouldIncludePostLayoutData == IncludePostLayoutDataHint::No && !frameViewHasFinishedLayout&& !frame.editor().hasComposition()) {195 // We only set the remaining EditorState entries if layout is done as a performance optimization 196 // to avoid the need to force a synchronous layout here to compute these entries. If we 197 // have a composition or are using a hardware keyboard then we send the full editor state 198 // immediately so that the UIProcess can update UI, including the position of the caret. 199 bool needsLayout = !frame.view() || frame.view()->needsLayout(); 200 if (shouldIncludePostLayoutData == IncludePostLayoutDataHint::No && needsLayout && !isInHardwareKeyboardMode() && !frame.editor().hasComposition()) { 200 201 result.isMissingPostLayoutData = true; 201 202 return;
Note:
See TracChangeset
for help on using the changeset viewer.