Chromium Code Reviews

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/cookies/resources/echo-json.php

Issue 1783813002: SameSite: Strict/Lax behavior. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@strict-lax
Patch Set: Comment. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <?php
2 header("Content-Type: application/json");
3 header("Access-Control-Allow-Credentials: true");
4 header("Access-Control-Allow-Origin: ${_SERVER['HTTP_ORIGIN']}");
5
6 echo json_encode($_COOKIE);
7 ?>
OLDNEW

Powered by Google App Engine