Title: [184279] branches/safari-601.1.32-branch/Source

Diff

Modified: branches/safari-601.1.32-branch/Source/WebCore/ChangeLog (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebCore/ChangeLog	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebCore/ChangeLog	2015-05-13 07:09:00 UTC (rev 184279)
@@ -1,3 +1,21 @@
+2015-05-13  Babak Shafiei  <[email protected]>
+
+        Merge r184231.
+
+    2015-05-12  Simon Fraser  <[email protected]>
+
+            Turn antialiased font dilation off by default
+            https://bugs.webkit.org/show_bug.cgi?id=144940
+            rdar://problem/20923031
+
+            Reviewed by Sam Weinig.
+
+            Turn antialised font dilation off by default.
+
+            * page/Settings.cpp:
+            (WebCore::Settings::Settings):
+            * platform/graphics/FontCascade.cpp:
+
 2015-05-06  Brent Fulgham  <[email protected]>
 
         Scroll-snap points do not handle margins and padding propertly

Modified: branches/safari-601.1.32-branch/Source/WebCore/page/Settings.cpp (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebCore/page/Settings.cpp	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebCore/page/Settings.cpp	2015-05-13 07:09:00 UTC (rev 184279)
@@ -186,7 +186,7 @@
     , m_needsAdobeFrameReloadingQuirk(false)
     , m_usesPageCache(false)
     , m_fontRenderingMode(0)
-    , m_antialiasedFontDilationEnabled(true)
+    , m_antialiasedFontDilationEnabled(false)
     , m_showTiledScrollingIndicator(false)
     , m_backgroundShouldExtendBeyondPage(false)
     , m_dnsPrefetchingEnabled(false)

Modified: branches/safari-601.1.32-branch/Source/WebCore/platform/graphics/FontCascade.cpp (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebCore/platform/graphics/FontCascade.cpp	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebCore/platform/graphics/FontCascade.cpp	2015-05-13 07:09:00 UTC (rev 184279)
@@ -582,7 +582,7 @@
     return shouldUseFontSmoothing;
 }
 
-static bool antialiasedFontDilationIsEnabled = true;
+static bool antialiasedFontDilationIsEnabled = false;
 
 void FontCascade::setAntialiasedFontDilationEnabled(bool enabled)
 {

Modified: branches/safari-601.1.32-branch/Source/WebKit/mac/ChangeLog (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebKit/mac/ChangeLog	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebKit/mac/ChangeLog	2015-05-13 07:09:00 UTC (rev 184279)
@@ -1,3 +1,20 @@
+2015-05-13  Babak Shafiei  <[email protected]>
+
+        Merge r184231.
+
+    2015-05-12  Simon Fraser  <[email protected]>
+
+            Turn antialiased font dilation off by default
+            https://bugs.webkit.org/show_bug.cgi?id=144940
+            rdar://problem/20923031
+
+            Reviewed by Sam Weinig.
+
+            Turn antialised font dilation off by default.
+
+            * WebView/WebPreferences.mm:
+            (+[WebPreferences initialize]):
+
 2015-05-12  Babak Shafiei  <[email protected]>
 
         Merge r183968.

Modified: branches/safari-601.1.32-branch/Source/WebKit/mac/WebView/WebPreferences.mm (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebKit/mac/WebView/WebPreferences.mm	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebKit/mac/WebView/WebPreferences.mm	2015-05-13 07:09:00 UTC (rev 184279)
@@ -418,7 +418,7 @@
         @"0",                           WebKitMinimumFontSizePreferenceKey,
         @"9",                           WebKitMinimumLogicalFontSizePreferenceKey, 
         @"16",                          WebKitDefaultFontSizePreferenceKey,
-        @(YES),                         WebKitAntialiasedFontDilationEnabledKey,
+        @(NO),                          WebKitAntialiasedFontDilationEnabledKey,
         @"13",                          WebKitDefaultFixedFontSizePreferenceKey,
         @"ISO-8859-1",                  WebKitDefaultTextEncodingNamePreferenceKey,
         [NSNumber numberWithBool:NO],   WebKitUsesEncodingDetectorPreferenceKey,

Modified: branches/safari-601.1.32-branch/Source/WebKit2/ChangeLog (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebKit2/ChangeLog	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebKit2/ChangeLog	2015-05-13 07:09:00 UTC (rev 184279)
@@ -1,5 +1,22 @@
 2015-05-13  Babak Shafiei  <[email protected]>
 
+        Merge r184231.
+
+    2015-05-12  Simon Fraser  <[email protected]>
+
+            Turn antialiased font dilation off by default
+            https://bugs.webkit.org/show_bug.cgi?id=144940
+            rdar://problem/20923031
+
+            Reviewed by Sam Weinig.
+
+            Turn antialised font dilation off by default.
+
+            * Shared/WebPreferencesDefinitions.h:
+            * UIProcess/API/C/WKPreferencesRefPrivate.h:
+
+2015-05-13  Babak Shafiei  <[email protected]>
+
         Merge r184215.
 
     2015-05-12  Anders Carlsson  <[email protected]>

Modified: branches/safari-601.1.32-branch/Source/WebKit2/Shared/WebPreferencesDefinitions.h (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2015-05-13 07:09:00 UTC (rev 184279)
@@ -195,7 +195,7 @@
     macro(GamepadsEnabled, gamepadsEnabled, Bool, bool, false) \
     macro(LongMousePressEnabled, longMousePressEnabled, Bool, bool, false) \
     macro(NewBlockInsideInlineModelEnabled, newBlockInsideInlineModelEnabled, Bool, bool, false) \
-    macro(AntialiasedFontDilationEnabled, antialiasedFontDilationEnabled, Bool, bool, true) \
+    macro(AntialiasedFontDilationEnabled, antialiasedFontDilationEnabled, Bool, bool, false) \
     macro(MetaRefreshEnabled, metaRefreshEnabled, Bool, bool, true) \
 
 #define FOR_EACH_WEBKIT_DOUBLE_PREFERENCE(macro) \

Modified: branches/safari-601.1.32-branch/Source/WebKit2/UIProcess/API/C/WKPreferencesRefPrivate.h (184278 => 184279)


--- branches/safari-601.1.32-branch/Source/WebKit2/UIProcess/API/C/WKPreferencesRefPrivate.h	2015-05-13 07:04:38 UTC (rev 184278)
+++ branches/safari-601.1.32-branch/Source/WebKit2/UIProcess/API/C/WKPreferencesRefPrivate.h	2015-05-13 07:09:00 UTC (rev 184279)
@@ -361,7 +361,7 @@
 WK_EXPORT void WKPreferencesSetScreenFontSubstitutionEnabled(WKPreferencesRef preferences, bool enabled);
 WK_EXPORT bool WKPreferencesGetScreenFontSubstitutionEnabled(WKPreferencesRef preferences);
 
-// Defaults to true.
+// Defaults to false.
 WK_EXPORT void WKPreferencesSetAntialiasedFontDilationEnabled(WKPreferencesRef preferences, bool enabled);
 WK_EXPORT bool WKPreferencesGetAntialiasedFontDilationEnabled(WKPreferencesRef preferences);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to