Title: [280930] trunk/Source/WebCore
- Revision
- 280930
- Author
- [email protected]
- Date
- 2021-08-11 13:39:42 -0700 (Wed, 11 Aug 2021)
Log Message
PCM: Flip WebCore's FraudPreventionEnabled to true if HAVE(RSA_BSSA) to match the experimental setting
https://bugs.webkit.org/show_bug.cgi?id=228961
Reviewed by Tim Horton.
Existing tests use the affected anchor attribute.
* page/RuntimeEnabledFeatures.h:
* page/Settings.yaml:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (280929 => 280930)
--- trunk/Source/WebCore/ChangeLog 2021-08-11 20:35:31 UTC (rev 280929)
+++ trunk/Source/WebCore/ChangeLog 2021-08-11 20:39:42 UTC (rev 280930)
@@ -1,3 +1,15 @@
+2021-08-11 John Wilander <[email protected]>
+
+ PCM: Flip WebCore's FraudPreventionEnabled to true if HAVE(RSA_BSSA) to match the experimental setting
+ https://bugs.webkit.org/show_bug.cgi?id=228961
+
+ Reviewed by Tim Horton.
+
+ Existing tests use the affected anchor attribute.
+
+ * page/RuntimeEnabledFeatures.h:
+ * page/Settings.yaml:
+
2021-08-11 Dana Estra <[email protected]>
Start smooth keyboard scrolling animation when pageUp or pageDown key is pressed.
Modified: trunk/Source/WebCore/page/RuntimeEnabledFeatures.h (280929 => 280930)
--- trunk/Source/WebCore/page/RuntimeEnabledFeatures.h 2021-08-11 20:35:31 UTC (rev 280929)
+++ trunk/Source/WebCore/page/RuntimeEnabledFeatures.h 2021-08-11 20:39:42 UTC (rev 280930)
@@ -346,7 +346,11 @@
bool m_lineHeightUnitsEnabled { false };
bool m_privateClickMeasurementDebugModeEnabled { false };
+#if HAVE(RSA_BSSA)
+ bool m_privateClickMeasurementFraudPreventionEnabled { true };
+#else
bool m_privateClickMeasurementFraudPreventionEnabled { false };
+#endif
#if ENABLE(TOUCH_EVENTS)
bool m_mouseEventsSimulationEnabled { false };
Modified: trunk/Source/WebCore/page/Settings.yaml (280929 => 280930)
--- trunk/Source/WebCore/page/Settings.yaml 2021-08-11 20:35:31 UTC (rev 280929)
+++ trunk/Source/WebCore/page/Settings.yaml 2021-08-11 20:39:42 UTC (rev 280930)
@@ -441,6 +441,7 @@
type: bool
defaultValue:
WebCore:
+ "HAVE(RSA_BSSA)": true
default: false
QuickTimePluginReplacementEnabled:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes