Title: [287419] trunk/Source/WTF
Revision
287419
Author
wei...@apple.com
Date
2021-12-23 20:23:37 -0800 (Thu, 23 Dec 2021)

Log Message

Gradient color interpolation incorrect for colors with alpha (need to interpolate premultiplied colors)
https://bugs.webkit.org/show_bug.cgi?id=150940
<rdar://problem/25499232>

Reviewed by Simon Fraser.

Enable CSSGradientPremultipliedAlphaInterpolationEnabled by default.

* Scripts/Preferences/WebPreferencesExperimental.yaml:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (287418 => 287419)


--- trunk/Source/WTF/ChangeLog	2021-12-24 01:49:20 UTC (rev 287418)
+++ trunk/Source/WTF/ChangeLog	2021-12-24 04:23:37 UTC (rev 287419)
@@ -1,3 +1,15 @@
+2021-12-23  Sam Weinig  <wei...@apple.com>
+
+        Gradient color interpolation incorrect for colors with alpha (need to interpolate premultiplied colors)
+        https://bugs.webkit.org/show_bug.cgi?id=150940
+        <rdar://problem/25499232>
+
+        Reviewed by Simon Fraser.
+
+        Enable CSSGradientPremultipliedAlphaInterpolationEnabled by default.
+
+        * Scripts/Preferences/WebPreferencesExperimental.yaml:
+
 2021-12-23  Brady Eidson  <beid...@apple.com>
 
         Add WTF::UUID class which is natively a 128-bit integer

Modified: trunk/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml (287418 => 287419)


--- trunk/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml	2021-12-24 01:49:20 UTC (rev 287418)
+++ trunk/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml	2021-12-24 04:23:37 UTC (rev 287419)
@@ -290,11 +290,11 @@
   humanReadableDescription: "Enable premultiplied alpha interpolated CSS gradients"
   defaultValue:
     WebKitLegacy:
-      default: false
+      default: true
     WebKit:
-      default: false
+      default: true
     WebCore:
-      default: false
+      default: true
 
 # FIXME: This is enabled when ENABLE(EXPERIMENTAL_FEATURES) is true in WebKit2. Perhaps we should consider using that for WebKitLegacy as well.
 CSSIndividualTransformPropertiesEnabled:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to