Sign in
chromium
/
external
/
Webkit
/
master
/
.
/
LayoutTests
/
http
/
tests
/
cache
/
resources
/
echo-cookie.cgi
blob: 80d3c4bf7b06ee522c40cc6db58bfc3e765ccee0 [
file
] [
log
] [
blame
]
#!/usr/bin/perl -w
use
CGI
;
$query
=
new CGI
;
my
$cookie
=
$query
->
cookie
(
'value'
);
print
"Content-type: text/plain\n"
;
print
"Cache-control: max-age=3600\n"
;
print
"\n"
;
print
"var response = '${cookie}';"
;