ReferrerPolicy
Policy for how the Referrer HTTP header value will be sent during navigation. If the `--no-referrers` command-line flag is specified then the policy value will be ignored and the Referrer value will never be sent.
Entries
This is the same as REFERRER_POLICY_CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE but here to match CEF native.
Clear the referrer header if the header value is HTTPS but the request destination is HTTP. This is the default behavior.
A slight variant on CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE: If the request destination is HTTP, an HTTPS referrer will be cleared. If the request's destination is cross-origin with the referrer (but does not downgrade), the referrer's granularity will be stripped down to an origin rather than a full URL. Same-origin requests will send the full referrer.
Strip the referrer down to an origin when the origin of the referrer is different from the destination's origin.
Never change the referrer.
Strip the referrer down to the origin regardless of the redirect location.
Clear the referrer when the request's referrer is cross-origin with the request destination.
Strip the referrer down to the origin, but clear it entirely if the referrer value is HTTPS and the destination is HTTP.
Always clear the referrer regardless of the request destination.
Always the last value in this enumeration.
Functions
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.