Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified 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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/cookies/resources/echo-json.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/cookies/resources/echo-json.php b/third_party/WebKit/LayoutTests/http/tests/cookies/resources/echo-json.php
new file mode 100644
index 0000000000000000000000000000000000000000..3e8090bc8b76f07668efac30b9fdd160a0a8e8fd
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/cookies/resources/echo-json.php
@@ -0,0 +1,7 @@
+<?php
+header("Content-Type: application/json");
+header("Access-Control-Allow-Credentials: true");
+header("Access-Control-Allow-Origin: ${_SERVER['HTTP_ORIGIN']}");
+
+echo json_encode($_COOKIE);
+?>

Powered by Google App Engine
This is Rietveld 408576698