Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/sinco/deps.ts>Protocol.Network.SetCookieBlockedReason

Browser Automation and Testing Tool for Deno, written in full TypeScript
Latest
type alias Protocol.Network.SetCookieBlockedReason
import { type Protocol } from "https://deno.land/x/sinco@v4.1.0/deps.ts";
const { SetCookieBlockedReason } = Protocol.Network;

Types of reasons why a cookie may not be stored from a response.

definition: (
| "SecureOnly"
| "SameSiteStrict"
| "SameSiteLax"
| "SameSiteUnspecifiedTreatedAsLax"
| "SameSiteNoneInsecure"
| "UserPreferences"
| "SyntaxError"
| "SchemeNotSupported"
| "OverwriteSecure"
| "InvalidDomain"
| "InvalidPrefix"
| "UnknownError"
| "SchemefulSameSiteStrict"
| "SchemefulSameSiteLax"
| "SchemefulSameSiteUnspecifiedTreatedAsLax"
| "SamePartyFromCrossPartyContext"
| "SamePartyConflictsWithOtherAttributes"
| "NameValuePairExceedsMaxSize"
)