Sign in
webkit
/
WebKit
/
eb01a7e76a5b8904fa6eb36e240d0af2b1bec526
/
.
/
LayoutTests
/
http
/
tests
/
cookies
/
resources
/
getCookies.cgi
blob: c4377c33703f36e04abdca81374a181296eacc58 [
file
] [
log
] [
blame
]
#!/usr/bin/perl -wT
use
strict
;
print
"Content-Type: text/plain\n"
;
print
"Cache-Control: no-store\n"
;
print
'Cache-Control: no-cache="set-cookie"'
.
"\n"
;
print
"HTTP_COOKIE: "
.
(
$ENV
{
HTTP_COOKIE
}
||
""
)
.
"\n\n"
;