Sign in
chromium
/
external
/
WebKit_LayoutTests
/
master
/
.
/
http
/
tests
/
inspector
/
network
/
resources
/
set-cookie.php
blob: b959612bdcd1d50b1806ce987139b9b7375c4425 [
file
] [
log
] [
blame
]
<?
php
header
(
"Expires: Thu, 01 Dec 2003 16:00:00 GMT"
);
header
(
"Cache-Control: no-store, no-cache, must-revalidate"
);
header
(
"Pragma: no-cache"
);
header
(
"Content-Type: text/plain"
);
setcookie
(
"TestCookie"
,
"TestCookieValue"
);
echo
(
"Cookie set."
);
?>