Sign in
webkit
/
WebKit
/
eb01a7e76a5b8904fa6eb36e240d0af2b1bec526
/
.
/
LayoutTests
/
http
/
tests
/
appcache
/
resources
/
manifest-if-cookie.php
blob: 1b90a508d5915e7637fd3364ab204a017c6a850c [
file
] [
log
] [
blame
]
<?
php
if
(
isset
(
$_COOKIE
[
'name'
]))
{
header
(
'Content-Type: text/html; '
.
$_COOKIE
[
'name'
]);
print
(
"CACHE MANIFEST\n"
);
print
(
"simple.txt\n"
);
return
;
}
header
(
'HTTP/1.0 404 Not Found'
);
header
(
'Content-Type: text/html; '
.
count
(
$_COOKIE
));
?>