Sign in
webkit
/
WebKit
/
ee12317405327b31b6fd139776e872b94d3ed8f7
/
.
/
LayoutTests
/
http
/
tests
/
cookies
/
resources
/
echo-json.php
blob: 5ee6af6488c9706658410afa789c06b70eb4d28f [
file
] [
log
] [
blame
]
<?
php
header
(
"Content-Type: application/json"
);
header
(
"Access-Control-Allow-Credentials: true"
);
header
(
"Access-Control-Allow-External: true"
);
header
(
"Access-Control-Allow-Origin: ${_SERVER['HTTP_ORIGIN']}"
);
echo json_encode
(
$_COOKIE
);
?>