|
| 1 | +2016-08-26 Jer Noble <jer.noble@apple.com> |
| 2 | + |
| 3 | + Add a test harness for running UI tests on the iOS Simulator |
| 4 | + https://bugs.webkit.org/show_bug.cgi?id=161265 |
| 5 | + |
| 6 | + Reviewed by Simon Fraser. |
| 7 | + |
| 8 | + Add a new iOS Simulator application which uses WKWebView to implement a basic browser, and which |
| 9 | + can serve as a test harness for WebKit UI tests. |
| 10 | + |
| 11 | + Also add a basic media playback test which verifies that a <video> element will begin playing in |
| 12 | + fullscreen on an iPhone device, but will play inline on an iPad device. |
| 13 | + |
| 14 | + * Makefile: Add MobileMiniBrowser as a Module for iOS builds. |
| 15 | + * MobileMiniBrowser/Configurations/Base.xcconfig: Added. |
| 16 | + * MobileMiniBrowser/Configurations/DebugRelease.xcconfig: Added. |
| 17 | + * MobileMiniBrowser/Configurations/MobileMiniBrowser.xcconfig: Added. |
| 18 | + * MobileMiniBrowser/Makefile: Added. |
| 19 | + * MobileMiniBrowser/MobileMiniBrowser.xcodeproj/project.pbxproj: Added. |
| 20 | + * MobileMiniBrowser/MobileMiniBrowser/AppDelegate.h: Added. |
| 21 | + * MobileMiniBrowser/MobileMiniBrowser/AppDelegate.m: Added. |
| 22 | + (-[AppDelegate application:didFinishLaunchingWithOptions:]): |
| 23 | + (-[AppDelegate applicationWillResignActive:]): |
| 24 | + (-[AppDelegate applicationDidEnterBackground:]): |
| 25 | + (-[AppDelegate applicationWillEnterForeground:]): |
| 26 | + (-[AppDelegate applicationDidBecomeActive:]): |
| 27 | + (-[AppDelegate applicationWillTerminate:]): |
| 28 | + * MobileMiniBrowser/MobileMiniBrowser/Assets.xcassets/AppIcon.appiconset/Contents.json: Added. |
| 29 | + * MobileMiniBrowser/MobileMiniBrowser/Base.lproj/LaunchScreen.storyboard: Added. |
| 30 | + * MobileMiniBrowser/MobileMiniBrowser/Base.lproj/Main.storyboard: Added. |
| 31 | + * MobileMiniBrowser/MobileMiniBrowser/Info.plist: Added. |
| 32 | + * MobileMiniBrowser/MobileMiniBrowser/TabViewController.h: Added. |
| 33 | + * MobileMiniBrowser/MobileMiniBrowser/TabViewController.m: Added. |
| 34 | + (-[TabViewController dealloc]): |
| 35 | + (-[TabViewController viewDidLoad]): |
| 36 | + (-[TabViewController observeValueForKeyPath:ofObject:change:context:]): |
| 37 | + (-[TabViewController tableView:cellForRowAtIndexPath:]): |
| 38 | + (-[TabViewController tableView:numberOfRowsInSection:]): |
| 39 | + (-[TabViewController numberOfSectionsInTableView:]): |
| 40 | + (-[TabViewController tableView:canEditRowAtIndexPath:]): |
| 41 | + (-[TabViewController tableView:canMoveRowAtIndexPath:]): |
| 42 | + (-[TabViewController tableView:commitEditingStyle:forRowAtIndexPath:]): |
| 43 | + (-[TabViewController tableView:didSelectRowAtIndexPath:]): |
| 44 | + * MobileMiniBrowser/MobileMiniBrowser/WebViewController.h: Added. |
| 45 | + * MobileMiniBrowser/MobileMiniBrowser/WebViewController.m: Added. |
| 46 | + (-[WebViewController viewDidLoad]): |
| 47 | + (-[WebViewController didReceiveMemoryWarning]): |
| 48 | + (-[WebViewController reload:]): |
| 49 | + (-[WebViewController goBack:]): |
| 50 | + (-[WebViewController goForward:]): |
| 51 | + (-[WebViewController urlFieldEditingBegan:]): |
| 52 | + (-[WebViewController navigateTo:]): |
| 53 | + (-[WebViewController showTabs:]): |
| 54 | + (-[WebViewController selectWebViewAtIndex:]): |
| 55 | + (-[WebViewController removeWebViewAtIndex:]): |
| 56 | + (-[WebViewController addWebView]): |
| 57 | + (-[WebViewController createWebView]): |
| 58 | + (-[WebViewController removeWebView:]): |
| 59 | + (-[WebViewController setCurrentWebView:]): |
| 60 | + (-[WebViewController webView:didFailNavigation:withError:]): |
| 61 | + (-[WebViewController observeValueForKeyPath:ofObject:change:context:]): |
| 62 | + * MobileMiniBrowser/MobileMiniBrowser/main.m: Added. |
| 63 | + (main): |
| 64 | + * MobileMiniBrowser/MobileMiniBrowserUITests/Info.plist: Added. |
| 65 | + * MobileMiniBrowser/MobileMiniBrowserUITests/MobileMiniBrowserUITests.m: Added. |
| 66 | + (-[MobileMiniBrowserUITests setUp]): |
| 67 | + (-[MobileMiniBrowserUITests tearDown]): |
| 68 | + (-[MobileMiniBrowserUITests testBasicVideoPlayback]): |
| 69 | + |
1 | 70 | 2016-08-26 Aakash Jain <aakash_jain@apple.com> |
2 | 71 |
|
3 | 72 | webkit-queues queue-status page should should list more recent statuses |
|
0 commit comments