Changeset 189948 in webkit
- Timestamp:
- Sep 17, 2015, 5:44:56 PM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 1 added
- 3 edited
-
ChangeLog (modified) (1 diff)
-
WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj (modified) (4 diffs)
-
WebKitTestRunner/WebKitTestRunnerApp/WebKitTestRunnerApp-Info.plist (modified) (1 diff)
-
WebKitTestRunner/ios/Launch.storyboard (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r189943 r189948 1 2015-09-17 Simon Fraser <simon.fraser@apple.com> 2 3 Give iOS WebKitTestRunner a launch storyboard 4 https://bugs.webkit.org/show_bug.cgi?id=149314 5 6 Reviewed by Dan Bates. 7 8 Add a launch storyboard to iOS WebKitTestRunner so that Springboard recognizes 9 that it's been built for specific device configurations, and puts the window 10 at the top of the screen. This simplifies coordinate conversions in a future patch. 11 12 * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: 13 * WebKitTestRunner/WebKitTestRunnerApp/WebKitTestRunnerApp-Info.plist: 14 * WebKitTestRunner/ios/Launch.storyboard: Added. 15 1 16 2015-09-17 Myles C. Maxfield <mmaxfield@apple.com> 2 17 -
trunk/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj
r189668 r189948 35 35 /* Begin PBXBuildFile section */ 36 36 0F5169CC1445222D00E0A9D7 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F5169CA1445222D00E0A9D7 /* WebKit.framework */; }; 37 0F831AEA1BAB84F400F96CD8 /* Launch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0F831AE91BAB84F400F96CD8 /* Launch.storyboard */; settings = {ASSET_TAGS = (); }; }; 37 38 0FEB90A01905A834000FDBF3 /* InjectedBundlePageCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FEB909E1905A776000FDBF3 /* InjectedBundlePageCocoa.mm */; }; 38 39 0FEB90A51905C016000FDBF3 /* CrashReporterInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FEB90A31905BC6A000FDBF3 /* CrashReporterInfo.mm */; }; … … 162 163 0F2109C7189C650D00F879A3 /* BaseTarget.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = BaseTarget.xcconfig; sourceTree = "<group>"; }; 163 164 0F5169CA1445222D00E0A9D7 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 165 0F831AE91BAB84F400F96CD8 /* Launch.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Launch.storyboard; sourceTree = "<group>"; }; 164 166 0FEB909E1905A776000FDBF3 /* InjectedBundlePageCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InjectedBundlePageCocoa.mm; sourceTree = "<group>"; }; 165 167 0FEB90A21905BC6A000FDBF3 /* CrashReporterInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CrashReporterInfo.h; path = cocoa/CrashReporterInfo.h; sourceTree = "<group>"; }; … … 490 492 isa = PBXGroup; 491 493 children = ( 494 0F831AE91BAB84F400F96CD8 /* Launch.storyboard */, 492 495 2EE52CEB1890A9A80010ED21 /* InfoPlist.strings */, 493 496 2EE52D131890A9FB0010ED21 /* PlatformWebViewIOS.mm */, … … 801 804 2E34C90018B68808000067BB /* WebKitTestRunnerInjectedBundle.bundle in Resources */, 802 805 2EE52CED1890A9A80010ED21 /* InfoPlist.strings in Resources */, 806 0F831AEA1BAB84F400F96CD8 /* Launch.storyboard in Resources */, 803 807 ); 804 808 runOnlyForDeploymentPostprocessing = 0; -
trunk/Tools/WebKitTestRunner/WebKitTestRunnerApp/WebKitTestRunnerApp-Info.plist
r185108 r189948 15 15 <key>CFBundleName</key> 16 16 <string>${PRODUCT_NAME}</string> 17 <key>UILaunchStoryboardName</key> 18 <string>Launch</string> 17 19 <key>CFBundlePackageType</key> 18 20 <string>APPL</string>
Note:
See TracChangeset
for help on using the changeset viewer.