summaryrefslogtreecommitdiffstats
path: root/LayoutTests/http/tests/cookies/resources/getCookies.cgi
blob: c4377c33703f36e04abdca81374a181296eacc58 (plain)
1
2
3
4
5
6
7
8
#!/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";