Sign in
webkit
/
WebKit
/
acc18fc21bb8590523f2ab0e4f6fcd163c893199
/
.
/
LayoutTests
/
imported
/
blink
/
http
/
tests
/
security
/
resources
/
green-background-allow-star.php
blob: c176c768a539e8615c9e4d72bd30c68292f49ac8 [
file
] [
log
] [
blame
]
<?
php
header
(
"Access-Control-Allow-Origin: *"
);
$name
=
'green-background.css'
;
$fp
=
fopen
(
$name
,
'rb'
);
header
(
"Content-Type: text/css"
);
header
(
"Content-Length: "
.
filesize
(
$name
));
fpassthru
(
$fp
);
exit
;
?>