Codebase list libcgi-pm-perl / 3445049
Merge pull request #237 from Dur09/master adding support for Samesite=None attribute Lee J authored 4 years ago GitHub committed 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
229229 return $self->{'httponly'};
230230 }
231231
232 my %_legal_samesite = ( Strict => 1, Lax => 1 );
232 my %_legal_samesite = ( Strict => 1, Lax => 1, None => 1 );
233233 sub samesite { # SameSite
234234 my $self = shift;
235235 my $samesite = ucfirst lc +shift if @_; # Normalize casing.