Sign in
webkit
/
WebKit
/
49e061d8a3dbe8c30f3935dcdd27d7b6b9ae2882
/
.
/
LayoutTests
/
http
/
tests
/
security
/
resources
/
green-if-no-referrer-css.php
blob: 83037134d5e1fcc93eee888853ed30dd0e63e1ec [
file
] [
log
] [
blame
]
<?
php
header
(
'Content-Type: text/css'
);
if
(
$_SERVER
[
'HTTP_REFERER'
]
==
''
)
{
echo
"body { background-color: green; }"
;
}
else
{
echo
"body { background-color: red; }"
;
}
?>