| Index: third_party/WebKit/LayoutTests/http/tests/cache/resources/xhr-vary-header-response.php
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/cache/resources/xhr-vary-header-response.php b/third_party/WebKit/LayoutTests/http/tests/cache/resources/xhr-vary-header-response.php
|
| index 02b8e567694f92aef19b9a5c411ecce5e4203ad4..88420b6a1e732198ad910d9552080d7c8e546f8b 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/cache/resources/xhr-vary-header-response.php
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/cache/resources/xhr-vary-header-response.php
|
| @@ -2,10 +2,9 @@
|
| header("Vary: Origin");
|
| header("Cache-Control: max-age=31536000");
|
| if (isset($_SERVER['HTTP_ORIGIN'])) {
|
| - header("Access-Control-Allow-Origin: http://127.0.0.1:8000");
|
| - echo "Cross origin ";
|
| + header("Access-Control-Allow-Origin: *");
|
| + echo "Origin header value is " . $_SERVER['HTTP_ORIGIN'];
|
| } else {
|
| - echo "Same origin ";
|
| + echo "No origin header";
|
| }
|
| ?>
|
| -response
|
|
|