You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This variant was originally intended to disambiguate between an empty string Domain: value being specified (undefined behavior) and no Domain attribute being present on the source cookie. Within the store, however, such variants eventually end up being converted to the HostOnly case per the RFC.
Is their utility in retaining this distinction? As it stands, there is logic around this in CookieStore::insert() that basically assumes this is an invalid case (resulting in CookieError::UnspecifiedDomain). It may make sense to simplify by removing this particular variant.
The text was updated successfully, but these errors were encountered:
This variant was originally intended to disambiguate between an empty string
Domain:
value being specified (undefined behavior) and noDomain
attribute being present on the source cookie. Within the store, however, such variants eventually end up being converted to theHostOnly
case per the RFC.Is their utility in retaining this distinction? As it stands, there is logic around this in
CookieStore::insert()
that basically assumes this is an invalid case (resulting inCookieError::UnspecifiedDomain
). It may make sense to simplify by removing this particular variant.The text was updated successfully, but these errors were encountered: