Sign in
webkit
/
WebKit
/
f0e035561d1c15fb0d80a78df625ae15f92dc2a7
/
.
/
LayoutTests
/
http
/
tests
/
loading
/
resources
/
imported-stylesheet-varying-according-domain.css.php
blob: c391064040bbb51013076d188e749ad0c141372c [
file
] [
log
] [
blame
]
<?
php
header
(
"Access-Control-Allow-Origin: *"
);
$color
=
$_SERVER
[
'HTTP_HOST'
]
===
$_GET
[
'domain'
]
?
"green"
:
"red"
;
header
(
"Content-Type: text/css"
);
echo
(
"body { background-color: "
.
$color
.
";}"
);
?>