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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/resources/abe-cookie-check.php

Issue 1487343002: Set credentials mode "same-origin" when crossOrigin=anonymous is set. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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/security/resources/abe-cookie-check.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-cookie-check.php b/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-cookie-check.php
new file mode 100644
index 0000000000000000000000000000000000000000..a65f11db6ae7e661583e4678f5c62b7c33d4905b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-cookie-check.php
@@ -0,0 +1,22 @@
+<?php
+$cookie_check = $_GET["Cookie"];
+if (isset($cookie_check)) {
+ if ($cookie_check == "NotSet") {
+ if (isset($_COOKIE['TestCookie'])) {
+ header("HTTP/1.0 404 Not Found");
+ exit;
+ }
+ } else if ($cookie_check != $_COOKIE['TestCookie']) {
+ header("HTTP/1.0 404 Not Found");
+ exit;
+ }
+}
+
+$name = 'abe.png';
+$fp = fopen($name, 'rb');
+header("Content-Type: image/png");
+header("Content-Length: " . filesize($name));
+
+fpassthru($fp);
+exit;
+?>

Powered by Google App Engine
This is Rietveld 408576698