Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html |
index 609ac6e433a88b35191f40879e3eddad4a4fc429..452b97c279d5e65fa17726c583f96bc2e59c74c6 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html |
@@ -69,7 +69,7 @@ function get_header_test() { |
.then(function(response) { |
assert_array_equals( |
get_sorted_header_name_list(response.headers), |
- ["accept", "user-agent"], |
+ ["accept", "origin", "user-agent"], |
'event.request has the expected headers for same-origin GET.'); |
}); |
} |
@@ -91,7 +91,7 @@ function cross_origin_get_header_test() { |
.then(function(response) { |
assert_array_equals( |
get_sorted_header_name_list(response.headers), |
- ["accept", "user-agent"], |
+ ["accept", "origin", "user-agent"], |
'event.request has the expected headers for cross-origin GET.'); |
}); |
} |