Title: [245777] trunk/Tools
Revision
245777
Author
simon.fra...@apple.com
Date
2019-05-25 16:14:57 -0700 (Sat, 25 May 2019)

Log Message

MobileMiniBrowser: Add iPad support, and allow insecure loads
https://bugs.webkit.org/show_bug.cgi?id=198249

Reviewed by Tim Horton.

Add iPad support to MobileMiniBrowser, and allow insecure loads.

* MobileMiniBrowser/MobileMiniBrowser.xcodeproj/project.pbxproj:
* MobileMiniBrowser/MobileMiniBrowser/Info.plist:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (245776 => 245777)


--- trunk/Tools/ChangeLog	2019-05-25 20:14:09 UTC (rev 245776)
+++ trunk/Tools/ChangeLog	2019-05-25 23:14:57 UTC (rev 245777)
@@ -1,3 +1,15 @@
+2019-05-25  Simon Fraser  <simon.fra...@apple.com>
+
+        MobileMiniBrowser: Add iPad support, and allow insecure loads
+        https://bugs.webkit.org/show_bug.cgi?id=198249
+
+        Reviewed by Tim Horton.
+
+        Add iPad support to MobileMiniBrowser, and allow insecure loads.
+
+        * MobileMiniBrowser/MobileMiniBrowser.xcodeproj/project.pbxproj:
+        * MobileMiniBrowser/MobileMiniBrowser/Info.plist:
+
 2019-05-25  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [iOS] Respect -[NSItemProvider preferredPresentationSize] when dropping images

Modified: trunk/Tools/MobileMiniBrowser/MobileMiniBrowser/Info.plist (245776 => 245777)


--- trunk/Tools/MobileMiniBrowser/MobileMiniBrowser/Info.plist	2019-05-25 20:14:09 UTC (rev 245776)
+++ trunk/Tools/MobileMiniBrowser/MobileMiniBrowser/Info.plist	2019-05-25 23:14:57 UTC (rev 245777)
@@ -49,5 +49,10 @@
 		<string>UIInterfaceOrientationLandscapeLeft</string>
 		<string>UIInterfaceOrientationLandscapeRight</string>
 	</array>
+	<key>NSAppTransportSecurity</key>
+	<dict>
+		<key>NSAllowsArbitraryLoadsInWebContent</key>
+		<true/>
+	</dict>
 </dict>
 </plist>

Modified: trunk/Tools/MobileMiniBrowser/MobileMiniBrowser.xcodeproj/project.pbxproj (245776 => 245777)


--- trunk/Tools/MobileMiniBrowser/MobileMiniBrowser.xcodeproj/project.pbxproj	2019-05-25 20:14:09 UTC (rev 245776)
+++ trunk/Tools/MobileMiniBrowser/MobileMiniBrowser.xcodeproj/project.pbxproj	2019-05-25 23:14:57 UTC (rev 245777)
@@ -441,6 +441,7 @@
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
 				PRODUCT_BUNDLE_IDENTIFIER = org.webkit.MobileMiniBrowser;
 				PRODUCT_NAME = MobileMiniBrowser;
+				TARGETED_DEVICE_FAMILY = "1,2";
 			};
 			name = Debug;
 		};
@@ -453,6 +454,7 @@
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
 				PRODUCT_BUNDLE_IDENTIFIER = org.webkit.MobileMiniBrowser;
 				PRODUCT_NAME = MobileMiniBrowser;
+				TARGETED_DEVICE_FAMILY = "1,2";
 			};
 			name = Release;
 		};
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to