Changeset 216291 in webkit
- Timestamp:
- May 5, 2017, 4:39:19 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 7 added
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r216289 r216291 1 2017-05-05 Simon Fraser <simon.fraser@apple.com> 2 3 Make it possible to test rotation in iOS WebKitTestRunner 4 https://bugs.webkit.org/show_bug.cgi?id=171755 5 6 Reviewed by Tim Horton. 7 8 Two rotation tests and one that comes last to ensure that the device was not left in a rotated state. 9 10 * fast/events/ios/rotation/basic-rotation-expected.txt: Added. 11 * fast/events/ios/rotation/basic-rotation.html: Added. 12 * fast/events/ios/rotation/safari-like-rotation-expected.txt: Added. 13 * fast/events/ios/rotation/safari-like-rotation.html: Added. 14 * fast/events/ios/rotation/zz-no-rotation-expected.txt: Added. 15 * fast/events/ios/rotation/zz-no-rotation.html: Added. 16 1 17 2017-05-05 Ryan Haddad <ryanhaddad@apple.com> 2 18 -
trunk/Tools/ChangeLog
r216288 r216291 1 2017-05-05 Simon Fraser <simon.fraser@apple.com> 2 3 Make it possible to test rotation in iOS WebKitTestRunner 4 https://bugs.webkit.org/show_bug.cgi?id=171755 5 6 Reviewed by Tim Horton. 7 8 Add to UIScriptController: 9 void simulateRotation(DeviceOrientation orientation, object callback); 10 void simulateRotationLikeSafari(DeviceOrientation orientation, object callback); 11 12 The former just does a view resize, as a simple WKWebView app would do. The second does 13 animation more like MobileSafari, using _begin/_endAnimatedResize. and associated override 14 layout size and interface orientation. The two behaviors produce different resize and 15 orientationchange events and sizes, and both need to be tested. 16 17 Rotation is initiated by a call on UIDevice, and responded to by the root view controller, 18 which is now a custom subclass (PlatformWebViewController). 19 20 * DumpRenderTree/ios/UIScriptControllerIOS.mm: 21 (WTR::UIScriptController::simulateRotation): 22 (WTR::UIScriptController::simulateRotationLikeSafari): 23 * DumpRenderTree/mac/UIScriptControllerMac.mm: 24 (WTR::UIScriptController::simulateRotation): 25 (WTR::UIScriptController::simulateRotationLikeSafari): 26 * TestRunnerShared/UIScriptContext/Bindings/UIScriptController.idl: 27 * TestRunnerShared/UIScriptContext/UIScriptController.cpp: 28 (WTR::toDeviceOrientation): 29 (WTR::UIScriptController::simulateRotation): 30 (WTR::UIScriptController::simulateRotationLikeSafari): 31 * TestRunnerShared/UIScriptContext/UIScriptController.h: 32 * WebKitTestRunner/cocoa/TestRunnerWKWebView.h: 33 * WebKitTestRunner/cocoa/TestRunnerWKWebView.mm: 34 (-[TestRunnerWKWebView dealloc]): 35 (-[TestRunnerWKWebView _didEndRotation]): 36 * WebKitTestRunner/ios/PlatformWebViewIOS.mm: 37 (-[PlatformWebViewController viewWillTransitionToSize:withTransitionCoordinator:]): 38 (WTR::PlatformWebView::PlatformWebView): 39 * WebKitTestRunner/ios/TestControllerIOS.mm: 40 (WTR::TestController::platformResetStateToConsistentValues): 41 * WebKitTestRunner/ios/UIScriptControllerIOS.mm: 42 (WTR::toUIDeviceOrientation): 43 (WTR::UIScriptController::simulateRotation): 44 (WTR::UIScriptController::simulateRotationLikeSafari): 45 (WTR::UIScriptController::platformClearAllCallbacks): 46 * WebKitTestRunner/mac/UIScriptControllerMac.mm: 47 (WTR::UIScriptController::simulateRotation): 48 (WTR::UIScriptController::simulateRotationLikeSafari): 49 1 50 2017-05-05 Jonathan Bedard <jbedard@apple.com> 2 51 -
trunk/Tools/DumpRenderTree/ios/UIScriptControllerIOS.mm
r216047 r216291 223 223 } 224 224 225 226 225 JSObjectRef UIScriptController::contentVisibleRect() const 227 226 { … … 309 308 } 310 309 310 void UIScriptController::simulateRotation(DeviceOrientation*, JSValueRef) 311 { 312 } 313 314 void UIScriptController::simulateRotationLikeSafari(DeviceOrientation*, JSValueRef) 315 { 316 } 317 311 318 void UIScriptController::removeViewFromWindow(JSValueRef) 312 319 { -
trunk/Tools/DumpRenderTree/mac/UIScriptControllerMac.mm
r214586 r216291 109 109 } 110 110 111 void UIScriptController::simulateRotation(DeviceOrientation*, JSValueRef) 112 { 113 } 114 115 void UIScriptController::simulateRotationLikeSafari(DeviceOrientation*, JSValueRef) 116 { 117 } 118 111 119 void UIScriptController::removeViewFromWindow(JSValueRef callback) 112 120 { -
trunk/Tools/TestRunnerShared/UIScriptContext/Bindings/UIScriptController.idl
r216047 r216291 23 23 * THE POSSIBILITY OF SUCH DAMAGE. 24 24 */ 25 26 enum DeviceOrientation { 27 "portrait", 28 "portrait-upsidedown", 29 "landscape-left", 30 "landscape-right" 31 }; 25 32 26 33 interface UIScriptController { … … 227 234 void retrieveSpeakSelectionContent(object callback); 228 235 readonly attribute DOMString accessibilitySpeakSelectionContent; 236 237 void simulateRotation(DeviceOrientation orientation, object callback); 238 void simulateRotationLikeSafari(DeviceOrientation orientation, object callback); 229 239 230 240 // Unparent and parent the web view, simulating, for example, tab switching. -
trunk/Tools/TestRunnerShared/UIScriptContext/UIScriptController.cpp
r216047 r216291 30 30 #include "UIScriptContext.h" 31 31 #include <JavaScriptCore/JSValueRef.h> 32 #include <JavaScriptCore/OpaqueJSString.h> 32 33 33 34 namespace WTR { 35 36 DeviceOrientation* toDeviceOrientation(JSContextRef context, JSValueRef value) 37 { 38 static DeviceOrientation values[] = { 39 DeviceOrientation::Portrait, 40 DeviceOrientation::PortraitUpsideDown, 41 DeviceOrientation::LandscapeLeft, 42 DeviceOrientation::LandscapeRight 43 }; 44 45 JSRetainPtr<JSStringRef> option(Adopt, JSValueToStringCopy(context, value, nullptr)); 46 if (option.get()->string() == "portrait") 47 return &values[0]; 48 49 if (option.get()->string() == "portrait-upsidedown") 50 return &values[1]; 51 52 if (option.get()->string() == "landscape-left") 53 return &values[2]; 54 55 if (option.get()->string() == "landscape-right") 56 return &values[3]; 57 58 return nullptr; 59 } 34 60 35 61 UIScriptController::UIScriptController(UIScriptContext& context) … … 408 434 #if !PLATFORM(COCOA) 409 435 436 void UIScriptController::simulateRotation(DeviceOrientation*, JSValueRef callback) 437 { 438 } 439 440 void UIScriptController::simulateRotationLikeSafari(DeviceOrientation*, JSValueRef callback) 441 { 442 } 443 410 444 void UIScriptController::removeViewFromWindow(JSValueRef) 411 445 { -
trunk/Tools/TestRunnerShared/UIScriptContext/UIScriptController.h
r216047 r216291 40 40 class UIScriptContext; 41 41 42 enum class DeviceOrientation { 43 Portrait, 44 PortraitUpsideDown, 45 LandscapeLeft, 46 LandscapeRight 47 }; 48 49 DeviceOrientation* toDeviceOrientation(JSContextRef, JSValueRef); 50 42 51 class UIScriptController : public JSWrappable { 43 52 public: … … 152 161 void retrieveSpeakSelectionContent(JSValueRef); 153 162 JSRetainPtr<JSStringRef> accessibilitySpeakSelectionContent() const; 163 164 void simulateRotation(DeviceOrientation*, JSValueRef); 165 void simulateRotationLikeSafari(DeviceOrientation*, JSValueRef); 154 166 155 167 // These use a callback to allow the client to know when view visibility state updates get to the web process. -
trunk/Tools/WebKitTestRunner/cocoa/TestRunnerWKWebView.h
r216047 r216291 41 41 @property (nonatomic, copy) void (^didHideKeyboardCallback)(void); 42 42 @property (nonatomic, copy) void (^didEndScrollingCallback)(void); 43 @property (nonatomic, copy) void (^rotationDidEndCallback)(void); 43 44 @property (nonatomic, copy) NSString *accessibilitySpeakSelectionContent; 44 45 45 46 - (void)zoomToScale:(double)scale animated:(BOOL)animated completionHandler:(void (^)(void))completionHandler; 46 47 - (void)accessibilityRetrieveSpeakSelectionContentWithCompletionHandler:(void (^)(void))completionHandler; 48 - (void)_didEndRotation; 47 49 48 50 @property (nonatomic, assign) UIEdgeInsets overrideSafeAreaInsets; 51 52 @property (nonatomic, assign) BOOL usesSafariLikeRotation; 49 53 50 54 #endif -
trunk/Tools/WebKitTestRunner/cocoa/TestRunnerWKWebView.mm
r216047 r216291 92 92 self.didHideKeyboardCallback = nil; 93 93 self.didEndScrollingCallback = nil; 94 self.rotationDidEndCallback = nil; 94 95 95 96 self.zoomToScaleCompletionHandler = nil; … … 192 193 } 193 194 195 - (void)_didEndRotation 196 { 197 if (self.rotationDidEndCallback) 198 self.rotationDidEndCallback(); 199 } 200 194 201 - (void)_accessibilityDidGetSpeakSelectionContent:(NSString *)content 195 202 { -
trunk/Tools/WebKitTestRunner/ios/PlatformWebViewIOS.mm
r215176 r216291 29 29 #import "TestController.h" 30 30 #import "TestRunnerWKWebView.h" 31 #import "UIKitSPI.h" 31 32 #import <WebCore/QuartzCoreSPI.h> 32 33 #import <WebKit/WKImageCG.h> … … 108 109 @end 109 110 111 @interface PlatformWebViewController : UIViewController 112 @end 113 114 @implementation PlatformWebViewController 115 116 - (void)viewWillTransitionToSize:(CGSize)toSize withTransitionCoordinator:(id <UIViewControllerTransitionCoordinator>)coordinator 117 { 118 [super viewWillTransitionToSize:toSize withTransitionCoordinator:coordinator]; 119 120 TestRunnerWKWebView *webView = WTR::TestController::singleton().mainWebView()->platformView(); 121 122 if (webView.usesSafariLikeRotation) 123 [webView _setInterfaceOrientationOverride:[[UIApplication sharedApplication] statusBarOrientation]]; 124 125 [coordinator animateAlongsideTransition: ^(id<UIViewControllerTransitionCoordinatorContext> context) { 126 if (webView.usesSafariLikeRotation) { 127 [webView _beginAnimatedResizeWithUpdates:^{ 128 auto size = self.view.bounds.size; 129 webView.frame = self.view.bounds; 130 [webView _overrideLayoutParametersWithMinimumLayoutSize:size maximumUnobscuredSizeOverride:size]; 131 [webView _setInterfaceOrientationOverride:[[UIApplication sharedApplication] statusBarOrientation]]; 132 }]; 133 } else 134 webView.frame = self.view.bounds; 135 } completion:^(id<UIViewControllerTransitionCoordinatorContext> context) { 136 webView.frame = self.view.bounds; 137 if (webView.usesSafariLikeRotation) 138 [webView _endAnimatedResize]; 139 140 [webView _didEndRotation]; 141 }]; 142 } 143 144 @end 145 110 146 namespace WTR { 111 147 … … 131 167 m_window.platformWebView = this; 132 168 133 UIViewController *viewController = [[ UIViewController alloc] init];169 UIViewController *viewController = [[PlatformWebViewController alloc] init]; 134 170 [m_window setRootViewController:viewController]; 135 171 [viewController release]; -
trunk/Tools/WebKitTestRunner/ios/TestControllerIOS.mm
r216047 r216291 81 81 cocoaResetStateToConsistentValues(); 82 82 83 [[UIDevice currentDevice] setOrientation:UIDeviceOrientationPortrait animated:NO]; 84 83 85 if (PlatformWebView* webView = mainWebView()) { 84 86 webView->platformView()._stableStateOverride = nil; 87 webView->platformView().usesSafariLikeRotation = NO; 85 88 UIScrollView *scrollView = webView->platformView().scrollView; 86 89 [scrollView _removeAllAnimations:YES]; -
trunk/Tools/WebKitTestRunner/ios/UIKitSPI.h
r216047 r216291 24 24 */ 25 25 26 #ifndef UIKitSPI_h 27 #define UIKitSPI_h 26 #pragma once 28 27 29 28 #import <wtf/Platform.h> … … 39 38 #import <UIKit/UIView_Private.h> 40 39 #import <UIKit/UIWindow_Private.h> 40 #import <UIKit/UIDevice_Private.h> 41 41 42 42 @interface UIKeyboardPredictionView : UIView … … 66 66 @end 67 67 68 @interface UIDevice () 69 - (void)setOrientation:(UIDeviceOrientation)orientation animated:(BOOL)animated; 70 @end 71 68 72 #endif // USE(APPLE_INTERNAL_SDK) 69 73 … … 76 80 #endif // PLATFORM(IOS) 77 81 78 #endif // UIKitSPI_h -
trunk/Tools/WebKitTestRunner/ios/UIScriptControllerIOS.mm
r216047 r216291 554 554 } 555 555 556 static UIDeviceOrientation toUIDeviceOrientation(DeviceOrientation* orientation) 557 { 558 if (!orientation) 559 return UIDeviceOrientationPortrait; 560 561 switch (*orientation) { 562 case DeviceOrientation::Portrait: 563 return UIDeviceOrientationPortrait; 564 case DeviceOrientation::PortraitUpsideDown: 565 return UIDeviceOrientationPortraitUpsideDown; 566 case DeviceOrientation::LandscapeLeft: 567 return UIDeviceOrientationLandscapeLeft; 568 case DeviceOrientation::LandscapeRight: 569 return UIDeviceOrientationLandscapeRight; 570 } 571 572 return UIDeviceOrientationPortrait; 573 } 574 575 void UIScriptController::simulateRotation(DeviceOrientation* orientation, JSValueRef callback) 576 { 577 TestRunnerWKWebView *webView = TestController::singleton().mainWebView()->platformView(); 578 webView.usesSafariLikeRotation = NO; 579 580 unsigned callbackID = m_context->prepareForAsyncTask(callback, CallbackTypeNonPersistent); 581 582 webView.rotationDidEndCallback = ^{ 583 if (!m_context) 584 return; 585 m_context->asyncTaskComplete(callbackID); 586 }; 587 588 [[UIDevice currentDevice] setOrientation:toUIDeviceOrientation(orientation) animated:YES]; 589 } 590 591 void UIScriptController::simulateRotationLikeSafari(DeviceOrientation* orientation, JSValueRef callback) 592 { 593 TestRunnerWKWebView *webView = TestController::singleton().mainWebView()->platformView(); 594 webView.usesSafariLikeRotation = YES; 595 596 unsigned callbackID = m_context->prepareForAsyncTask(callback, CallbackTypeNonPersistent); 597 598 webView.rotationDidEndCallback = ^{ 599 if (!m_context) 600 return; 601 m_context->asyncTaskComplete(callbackID); 602 }; 603 604 [[UIDevice currentDevice] setOrientation:toUIDeviceOrientation(orientation) animated:YES]; 605 } 606 556 607 void UIScriptController::removeViewFromWindow(JSValueRef callback) 557 608 { … … 667 718 webView.didShowKeyboardCallback = nil; 668 719 webView.didEndScrollingCallback = nil; 720 webView.rotationDidEndCallback = nil; 669 721 } 670 722 -
trunk/Tools/WebKitTestRunner/mac/UIScriptControllerMac.mm
r214586 r216291 157 157 } 158 158 159 void UIScriptController::simulateRotation(DeviceOrientation*, JSValueRef) 160 { 161 } 162 163 void UIScriptController::simulateRotationLikeSafari(DeviceOrientation*, JSValueRef) 164 { 165 } 166 159 167 void UIScriptController::removeViewFromWindow(JSValueRef callback) 160 168 {
Note:
See TracChangeset
for help on using the changeset viewer.