Title: [200664] trunk/Source/WebKit/mac
Revision
200664
Author
[email protected]
Date
2016-05-10 18:55:42 -0700 (Tue, 10 May 2016)

Log Message

[iOS WK1] text autosizing was on for all layout tests
https://bugs.webkit.org/show_bug.cgi?id=157541

Reviewed by Tim Horton.

Make sure that we transfer the WK1 text autosizing preference to Settings.

* WebView/WebView.mm:
(-[WebView _preferencesChanged:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (200663 => 200664)


--- trunk/Source/WebKit/mac/ChangeLog	2016-05-11 01:49:18 UTC (rev 200663)
+++ trunk/Source/WebKit/mac/ChangeLog	2016-05-11 01:55:42 UTC (rev 200664)
@@ -1,3 +1,15 @@
+2016-05-10  Simon Fraser  <[email protected]>
+
+        [iOS WK1] text autosizing was on for all layout tests
+        https://bugs.webkit.org/show_bug.cgi?id=157541
+
+        Reviewed by Tim Horton.
+
+        Make sure that we transfer the WK1 text autosizing preference to Settings.
+
+        * WebView/WebView.mm:
+        (-[WebView _preferencesChanged:]):
+
 2016-05-09  Tim Horton  <[email protected]>
 
         [WebKit1] Invoking a link preview on a complex link (e.g. an image) results in an empty TextIndicator

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (200663 => 200664)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2016-05-11 01:49:18 UTC (rev 200663)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2016-05-11 01:55:42 UTC (rev 200664)
@@ -2400,6 +2400,7 @@
 
 #if ENABLE(IOS_TEXT_AUTOSIZING)
     settings.setMinimumZoomFontSize([preferences _minimumZoomFontSize]);
+    settings.setTextAutosizingEnabled([preferences _textAutosizingEnabled]);
 #endif
 #endif // PLATFORM(IOS)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to