Title: [170385] trunk/Source/WebKit2
Revision
170385
Author
akl...@apple.com
Date
2014-06-24 13:18:15 -0700 (Tue, 24 Jun 2014)

Log Message

[iOS WebKit2] Disable screen font substitution by default.
<https://webkit.org/b/134266>
<rdar://problem/17427740>

Just like OS X >= 10.9, screen font substitution should be disabled
by default in WebKit2 for iOS.

Reviewed by Anders Carlsson.

* Shared/WebPreferencesDefinitions.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (170384 => 170385)


--- trunk/Source/WebKit2/ChangeLog	2014-06-24 19:59:58 UTC (rev 170384)
+++ trunk/Source/WebKit2/ChangeLog	2014-06-24 20:18:15 UTC (rev 170385)
@@ -1,3 +1,16 @@
+2014-06-24  Andreas Kling  <akl...@apple.com>
+
+        [iOS WebKit2] Disable screen font substitution by default.
+        <https://webkit.org/b/134266>
+        <rdar://problem/17427740>
+
+        Just like OS X >= 10.9, screen font substitution should be disabled
+        by default in WebKit2 for iOS.
+
+        Reviewed by Anders Carlsson.
+
+        * Shared/WebPreferencesDefinitions.h:
+
 2014-06-24  Anders Carlsson  <ander...@apple.com>
 
         Add PageState to HistoryItem conversion code

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (170384 => 170385)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2014-06-24 19:59:58 UTC (rev 170384)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2014-06-24 20:18:15 UTC (rev 170385)
@@ -40,7 +40,7 @@
 #define DEFAULT_WEBKIT_SCROLL_ANIMATOR_ENABLED false
 #endif
 
-#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
+#if PLATFORM(IOS) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090)
 #define DEFAULT_SCREEN_FONT_SUBSTITUTION_ENABLED false
 #else
 #define DEFAULT_SCREEN_FONT_SUBSTITUTION_ENABLED true
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to