Sign in
webkit
/
WebKit
/
c6a7a2f378a60ecad2c606428f6fc0921528b1a6
/
.
/
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
);
?>