Sign in
webkit
/
WebKit
/
5bd663b95d2fa0048c9b51d7e90d3c09992ceb28
/
.
/
LayoutTests
/
http
/
tests
/
security
/
resources
/
loading-subresources.php
blob: 6c8f34fcd856a2cdfc5d582abc4793fcd3127796 [
file
] [
log
] [
blame
]
<?
php
header
(
"Access-Control-Allow-Origin: *"
);
$name
=
'loading-subresources.css'
;
$fp
=
fopen
(
$name
,
'rb'
);
header
(
"Content-Type: text/css"
);
header
(
"Content-Length: "
.
filesize
(
$name
));
fpassthru
(
$fp
);
exit
;
?>