Sign in
webkit
/
WebKit
/
6756d1c4625eeb8d03076cb127515d00fa7c2e16
/
.
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
resources
/
print-headers.cgi
blob: 32d0f42e6aea092b1a1abefa028b5ce6cca68f0b [
file
] [
log
] [
blame
]
#!/usr/bin/perl -wT
use
strict
;
print
"Content-Type: text/plain\n"
;
print
"Cache-Control: no-store\n\n"
;
foreach
(
keys
%
ENV
)
{
if
(
$_
=~
"HTTP_"
)
{
print
$_
.
": "
.
$ENV
{
$_
}
.
"\n"
;
}
}