Title: [186245] trunk/Source/WebKit/ios
Revision
186245
Author
timothy_hor...@apple.com
Date
2015-07-02 16:40:59 -0700 (Thu, 02 Jul 2015)

Log Message

iOS WebKitLegacy should match WebKit2's viewport behavior
https://bugs.webkit.org/show_bug.cgi?id=146564
<rdar://problem/20574017>

Reviewed by Brent Fulgham.

* WebCoreSupport/WebChromeClientIOS.mm:
(dictionaryForViewportArguments):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ios/ChangeLog (186244 => 186245)


--- trunk/Source/WebKit/ios/ChangeLog	2015-07-02 23:34:18 UTC (rev 186244)
+++ trunk/Source/WebKit/ios/ChangeLog	2015-07-02 23:40:59 UTC (rev 186245)
@@ -1,6 +1,17 @@
 2015-07-02  Timothy Horton  <timothy_hor...@apple.com>
 
         iOS WebKitLegacy should match WebKit2's viewport behavior
+        https://bugs.webkit.org/show_bug.cgi?id=146564
+        <rdar://problem/20574017>
+
+        Reviewed by Brent Fulgham.
+
+        * WebCoreSupport/WebChromeClientIOS.mm:
+        (dictionaryForViewportArguments):
+
+2015-07-02  Timothy Horton  <timothy_hor...@apple.com>
+
+        iOS WebKitLegacy should match WebKit2's viewport behavior
         https://bugs.webkit.org/show_bug.cgi?id=146540
         <rdar://problem/20574017>
 

Modified: trunk/Source/WebKit/ios/WebCoreSupport/WebChromeClientIOS.mm (186244 => 186245)


--- trunk/Source/WebKit/ios/WebCoreSupport/WebChromeClientIOS.mm	2015-07-02 23:34:18 UTC (rev 186244)
+++ trunk/Source/WebKit/ios/WebCoreSupport/WebChromeClientIOS.mm	2015-07-02 23:40:59 UTC (rev 186245)
@@ -167,6 +167,7 @@
               @"minimum-scale":@(arguments.minZoom),
               @"maximum-scale":@(arguments.maxZoom),
               @"user-scalable":@(arguments.userZoom),
+              @"shrink-to-fit":@(arguments.shrinkToFit),
               @"width":@(arguments.width),
               @"height":@(arguments.height) };
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to