Sign in
chromium
/
chromium
/
src.git
/
edabf4518f44d6bb65b103e68c13423b729e8977
/
.
/
third_party
/
WebKit
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
web-apps
/
001-test.cgi
blob: 074959f23da99ee8f2be226b35403c775fe759c9 [
file
] [
log
] [
blame
]
#!/usr/bin/perl -wT
use
strict
;
if
(
$ENV
{
'HTTP_X_TEST_HEADER'
}
eq
'Test'
)
{
print
"Content-Type: text/plain\nCache-Control: no-store\n\nPASS"
;
}
else
{
print
"Content-Type: text/plain\nCache-Control: no-store\n\nFAIL"
;
}