⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280930 in webkit


Ignore:
Timestamp:
Aug 11, 2021, 1:39:42 PM (5 years ago)
Author:
wilander@apple.com
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:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r280928 r280930  
     12021-08-11  John Wilander  <wilander@apple.com>
     2
     3        PCM: Flip WebCore's FraudPreventionEnabled to true if HAVE(RSA_BSSA) to match the experimental setting
     4        https://bugs.webkit.org/show_bug.cgi?id=228961
     5
     6        Reviewed by Tim Horton.
     7
     8        Existing tests use the affected anchor attribute.
     9
     10        * page/RuntimeEnabledFeatures.h:
     11        * page/Settings.yaml:
     12
    1132021-08-11  Dana Estra  <destra@apple.com>
    214
  • trunk/Source/WebCore/page/RuntimeEnabledFeatures.h

    r280416 r280930  
    347347
    348348    bool m_privateClickMeasurementDebugModeEnabled { false };
     349#if HAVE(RSA_BSSA)
     350    bool m_privateClickMeasurementFraudPreventionEnabled { true };
     351#else
    349352    bool m_privateClickMeasurementFraudPreventionEnabled { false };
     353#endif
    350354
    351355#if ENABLE(TOUCH_EVENTS)
  • trunk/Source/WebCore/page/Settings.yaml

    r278498 r280930  
    442442  defaultValue:
    443443    WebCore:
     444      "HAVE(RSA_BSSA)": true
    444445      default: false
    445446
Note: See TracChangeset for help on using the changeset viewer.