Title: [268875] branches/safari-611.1.4-branch

Diff

Modified: branches/safari-611.1.4-branch/Source/WTF/ChangeLog (268874 => 268875)


--- branches/safari-611.1.4-branch/Source/WTF/ChangeLog	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Source/WTF/ChangeLog	2020-10-22 18:26:34 UTC (rev 268875)
@@ -1,3 +1,7 @@
+2020-10-22  Alan Coon  <[email protected]>
+
+        Revert r268616. rdar://problem/70578639
+
 2020-10-16  Wenson Hsieh  <[email protected]>
 
         Add system trace points for flushing remote image buffers

Modified: branches/safari-611.1.4-branch/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml (268874 => 268875)


--- branches/safari-611.1.4-branch/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml	2020-10-22 18:26:34 UTC (rev 268875)
@@ -132,11 +132,12 @@
   humanReadableDescription: "Support for the translate, scale and rotate CSS properties"
   defaultValue:
     WebKitLegacy:
-      default: true
+      default: false
     WebKit:
-      default: true
+      "ENABLE(EXPERIMENTAL_FEATURES)" : true
+      default: false
     WebCore:
-      default: true
+      default: false
 
 CSSOMViewSmoothScrollingEnabled:
   type: bool

Modified: branches/safari-611.1.4-branch/Source/WebKitLegacy/win/ChangeLog (268874 => 268875)


--- branches/safari-611.1.4-branch/Source/WebKitLegacy/win/ChangeLog	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Source/WebKitLegacy/win/ChangeLog	2020-10-22 18:26:34 UTC (rev 268875)
@@ -1,3 +1,7 @@
+2020-10-22  Alan Coon  <[email protected]>
+
+        Revert r268616. rdar://problem/70578639
+
 2020-10-17  Sam Weinig  <[email protected]>
 
         [Preferences] Add infrastructure for generating preferences for WWindows WebKitLegacy

Modified: branches/safari-611.1.4-branch/Source/WebKitLegacy/win/WebPreferences.cpp (268874 => 268875)


--- branches/safari-611.1.4-branch/Source/WebKitLegacy/win/WebPreferences.cpp	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Source/WebKitLegacy/win/WebPreferences.cpp	2020-10-22 18:26:34 UTC (rev 268875)
@@ -348,7 +348,7 @@
 
     CFDictionaryAddValue(defaults, CFSTR(WebKitWebSQLEnabledPreferenceKey), kCFBooleanFalse);
 
-    CFDictionaryAddValue(defaults, CFSTR(WebKitCSSIndividualTransformPropertiesEnabledPreferenceKey), kCFBooleanTrue);
+    CFDictionaryAddValue(defaults, CFSTR(WebKitCSSIndividualTransformPropertiesEnabledPreferenceKey), kCFBooleanFalse);
 
     defaultSettings = defaults;
 #endif

Modified: branches/safari-611.1.4-branch/Tools/ChangeLog (268874 => 268875)


--- branches/safari-611.1.4-branch/Tools/ChangeLog	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Tools/ChangeLog	2020-10-22 18:26:34 UTC (rev 268875)
@@ -1,3 +1,7 @@
+2020-10-22  Alan Coon  <[email protected]>
+
+        Revert r268616. rdar://problem/70578639
+
 2020-10-17  Philippe Normand  <[email protected]>
 
         [Flatpak SDK] flatpakutils.py reports "KeyError: 'gcc'" error if using with icecc and toolchains aren't generated yet

Modified: branches/safari-611.1.4-branch/Tools/DumpRenderTree/mac/DumpRenderTree.mm (268874 => 268875)


--- branches/safari-611.1.4-branch/Tools/DumpRenderTree/mac/DumpRenderTree.mm	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Tools/DumpRenderTree/mac/DumpRenderTree.mm	2020-10-22 18:26:34 UTC (rev 268875)
@@ -840,6 +840,7 @@
     [preferences setLinkPreloadResponsiveImagesEnabled:YES];
     [preferences setAspectRatioOfImgFromWidthAndHeightEnabled:YES];
     [preferences setCSSOMViewSmoothScrollingEnabled:YES];
+    [preferences setCSSIndividualTransformPropertiesEnabled:YES];
     [preferences setAudioWorkletEnabled:YES];
 }
 

Modified: branches/safari-611.1.4-branch/Tools/DumpRenderTree/win/DumpRenderTree.cpp (268874 => 268875)


--- branches/safari-611.1.4-branch/Tools/DumpRenderTree/win/DumpRenderTree.cpp	2020-10-22 18:26:31 UTC (rev 268874)
+++ branches/safari-611.1.4-branch/Tools/DumpRenderTree/win/DumpRenderTree.cpp	2020-10-22 18:26:34 UTC (rev 268875)
@@ -814,6 +814,7 @@
     // FIXME: WebGL2
     // FIXME: WebRTC
     prefsPrivate->setCSSOMViewSmoothScrollingEnabled(TRUE);
+    prefsPrivate->setCSSIndividualTransformPropertiesEnabled(TRUE);
 }
 
 static void resetWebPreferencesToConsistentValues(IWebPreferences* preferences)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to