Sign in
webkit
/
WebKit
/
5477927d104775982421a977c5683c552d9374f2
/
.
/
LayoutTests
/
http
/
tests
/
appcache
/
resources
/
auth
/
subresource.php
blob: 0945d537b68fa0d87397015a28a7ab8ccfc18814 [
file
] [
log
] [
blame
]
<?
php
if
(!
isset
(
$_SERVER
[
'PHP_AUTH_USER'
]))
{
header
(
'WWW-Authenticate: Basic realm="WebKit AppCache Test Realm"'
);
header
(
'HTTP/1.0 401 Unauthorized'
);
echo
'Authentication canceled'
;
exit
;
}
else
{
echo
"/* Empty subresource */"
;
}
?>