Sign in
webkit
/
WebKit
/
9641047005339a44ecb1e1216caaa1105a36a25c
/
.
/
LayoutTests
/
http
/
tests
/
security
/
resources
/
pass-if-no-referrer.php
blob: 0fb3795eb6efc1282d6b3c3ff9f33d62dd585254 [
file
] [
log
] [
blame
]
<?
php
if
(
$_SERVER
[
'HTTP_REFERER'
]
==
''
)
{
http_response_code
(
200
);
}
else
{
http_response_code
(
500
);
}
header
(
'Content-Type: text/html'
);
?>