Index: third_party/WebKit/LayoutTests/http/tests/security/resources/abe-allow-star.php |
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-allow-star.php b/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-allow-star.php |
index d3d621d646477d864a789c6c5a00064c172dfaa7..3bd092a42c029a944b826b0887a66698bed5f7d3 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-allow-star.php |
+++ b/third_party/WebKit/LayoutTests/http/tests/security/resources/abe-allow-star.php |
@@ -1,4 +1,17 @@ |
<?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; |
+ } |
+} |
+ |
header("Access-Control-Allow-Origin: *"); |
$name = 'abe.png'; |