Changeset 189948 in webkit


Ignore:
Timestamp:
Sep 17, 2015, 5:44:56 PM (10 years ago)
Author:
Simon Fraser
Message:

Give iOS WebKitTestRunner a launch storyboard
https://bugs.webkit.org/show_bug.cgi?id=149314

Reviewed by Dan Bates.

Add a launch storyboard to iOS WebKitTestRunner so that Springboard recognizes
that it's been built for specific device configurations, and puts the window
at the top of the screen. This simplifies coordinate conversions in a future patch.

  • WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
  • WebKitTestRunner/WebKitTestRunnerApp/WebKitTestRunnerApp-Info.plist:
  • WebKitTestRunner/ios/Launch.storyboard: Added.
Location:
trunk/Tools
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r189943 r189948  
     12015-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
    1162015-09-17  Myles C. Maxfield  <mmaxfield@apple.com>
    217
  • trunk/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj

    r189668 r189948  
    3535/* Begin PBXBuildFile section */
    3636                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 = (); }; };
    3738                0FEB90A01905A834000FDBF3 /* InjectedBundlePageCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FEB909E1905A776000FDBF3 /* InjectedBundlePageCocoa.mm */; };
    3839                0FEB90A51905C016000FDBF3 /* CrashReporterInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FEB90A31905BC6A000FDBF3 /* CrashReporterInfo.mm */; };
     
    162163                0F2109C7189C650D00F879A3 /* BaseTarget.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = BaseTarget.xcconfig; sourceTree = "<group>"; };
    163164                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>"; };
    164166                0FEB909E1905A776000FDBF3 /* InjectedBundlePageCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InjectedBundlePageCocoa.mm; sourceTree = "<group>"; };
    165167                0FEB90A21905BC6A000FDBF3 /* CrashReporterInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CrashReporterInfo.h; path = cocoa/CrashReporterInfo.h; sourceTree = "<group>"; };
     
    490492                        isa = PBXGroup;
    491493                        children = (
     494                                0F831AE91BAB84F400F96CD8 /* Launch.storyboard */,
    492495                                2EE52CEB1890A9A80010ED21 /* InfoPlist.strings */,
    493496                                2EE52D131890A9FB0010ED21 /* PlatformWebViewIOS.mm */,
     
    801804                                2E34C90018B68808000067BB /* WebKitTestRunnerInjectedBundle.bundle in Resources */,
    802805                                2EE52CED1890A9A80010ED21 /* InfoPlist.strings in Resources */,
     806                                0F831AEA1BAB84F400F96CD8 /* Launch.storyboard in Resources */,
    803807                        );
    804808                        runOnlyForDeploymentPostprocessing = 0;
  • trunk/Tools/WebKitTestRunner/WebKitTestRunnerApp/WebKitTestRunnerApp-Info.plist

    r185108 r189948  
    1515        <key>CFBundleName</key>
    1616        <string>${PRODUCT_NAME}</string>
     17        <key>UILaunchStoryboardName</key>
     18        <string>Launch</string>
    1719        <key>CFBundlePackageType</key>
    1820        <string>APPL</string>
Note: See TracChangeset for help on using the changeset viewer.