Modified: tags/Safari-604.1.9/Source/WebKit/mac/ChangeLog (213666 => 213667)
--- tags/Safari-604.1.9/Source/WebKit/mac/ChangeLog 2017-03-09 21:56:33 UTC (rev 213666)
+++ tags/Safari-604.1.9/Source/WebKit/mac/ChangeLog 2017-03-09 21:58:46 UTC (rev 213667)
@@ -1,3 +1,7 @@
+2017-03-09 Jason Marcell <[email protected]>
+
+ Rollout r213557. rdar://problem/30955791
+
2017-03-07 Alexey Proskuryakov <[email protected]>
WebKitLegacy should re-export symbols from WebCore on watchos and tvos
Modified: tags/Safari-604.1.9/Source/WebKit/mac/WebView/WebPreferences.mm (213666 => 213667)
--- tags/Safari-604.1.9/Source/WebKit/mac/WebView/WebPreferences.mm 2017-03-09 21:56:33 UTC (rev 213666)
+++ tags/Safari-604.1.9/Source/WebKit/mac/WebView/WebPreferences.mm 2017-03-09 21:58:46 UTC (rev 213667)
@@ -491,14 +491,7 @@
[NSNumber numberWithBool:NO], WebKitJavaScriptCanAccessClipboardPreferenceKey,
[NSNumber numberWithBool:YES], WebKitXSSAuditorEnabledPreferenceKey,
[NSNumber numberWithBool:YES], WebKitAcceleratedCompositingEnabledPreferenceKey,
-
-#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
-#define DEFAULT_SUBPIXEL_ANTIALIASED_LAYER_TEXT_ENABLED YES
-#else
-#define DEFAULT_SUBPIXEL_ANTIALIASED_LAYER_TEXT_ENABLED NO
-#endif
- [NSNumber numberWithBool:DEFAULT_SUBPIXEL_ANTIALIASED_LAYER_TEXT_ENABLED], WebKitSubpixelAntialiasedLayerTextEnabledPreferenceKey,
-
+ [NSNumber numberWithBool:NO], WebKitSubpixelAntialiasedLayerTextEnabledPreferenceKey,
[NSNumber numberWithBool:NO], WebKitDisplayListDrawingEnabledPreferenceKey,
#if PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
[NSNumber numberWithBool:YES], WebKitAcceleratedDrawingEnabledPreferenceKey,
Modified: tags/Safari-604.1.9/Source/WebKit2/ChangeLog (213666 => 213667)
--- tags/Safari-604.1.9/Source/WebKit2/ChangeLog 2017-03-09 21:56:33 UTC (rev 213666)
+++ tags/Safari-604.1.9/Source/WebKit2/ChangeLog 2017-03-09 21:58:46 UTC (rev 213667)
@@ -1,3 +1,7 @@
+2017-03-09 Jason Marcell <[email protected]>
+
+ Rollout r213557. rdar://problem/30955791
+
2017-03-08 Jason Marcell <[email protected]>
Merge r213611. rdar://problem/30930190
Modified: tags/Safari-604.1.9/Source/WebKit2/Shared/WebPreferencesDefinitions.h (213666 => 213667)
--- tags/Safari-604.1.9/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2017-03-09 21:56:33 UTC (rev 213666)
+++ tags/Safari-604.1.9/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2017-03-09 21:58:46 UTC (rev 213667)
@@ -89,12 +89,6 @@
#define DEFAULT_REQUIRES_USER_GESTURE_FOR_AUDIO_PLAYBACK false
#endif
-#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
-#define DEFAULT_SUBPIXEL_ANTIALIASED_LAYER_TEXT_ENABLED true
-#else
-#define DEFAULT_SUBPIXEL_ANTIALIASED_LAYER_TEXT_ENABLED false
-#endif
-
#if PLATFORM(IOS_SIMULATOR)
#define DEFAULT_ACCELERATED_DRAWING_ENABLED false
#define DEFAULT_CANVAS_USES_ACCELERATED_DRAWING false
@@ -283,7 +277,7 @@
#define FOR_EACH_WEBKIT_DEBUG_BOOL_PREFERENCE(macro) \
macro(AcceleratedDrawingEnabled, acceleratedDrawingEnabled, Bool, bool, DEFAULT_ACCELERATED_DRAWING_ENABLED, "", "") \
- macro(SubpixelAntialiasedLayerTextEnabled, subpixelAntialiasedLayerTextEnabled, Bool, bool, DEFAULT_SUBPIXEL_ANTIALIASED_LAYER_TEXT_ENABLED, "", "") \
+ macro(SubpixelAntialiasedLayerTextEnabled, subpixelAntialiasedLayerTextEnabled, Bool, bool, false, "", "") \
macro(DisplayListDrawingEnabled, displayListDrawingEnabled, Bool, bool, false, "", "") \
macro(CompositingBordersVisible, compositingBordersVisible, Bool, bool, false, "", "") \
macro(CompositingRepaintCountersVisible, compositingRepaintCountersVisible, Bool, bool, false, "", "") \