Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
resources
/
print-cache-control-header.cgi
blob: bf26d9a48c871ad3bdef46d52ad724d0fbe07390 [
file
] [
log
] [
blame
]
#!/usr/bin/perl -wT
use
strict
;
print
"Content-Type: text/plain\n\n"
;
foreach
(
keys
%
ENV
)
{
if
(
$_
=~
"HTTP_CACHE_CONTROL"
)
{
print
$_
.
": "
.
$ENV
{
$_
}
.
"\n"
;
}
}