| Index: LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html
|
| diff --git a/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html b/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html
|
| index 8122392bada9041a92b7aee9eebda6570ee76562..6ae31397baf0303f2343fe4bb77e4ef8c58c5e87 100644
|
| --- a/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html
|
| +++ b/LayoutTests/http/tests/serviceworker/resources/fetch-request-xhr-iframe.html
|
| @@ -58,7 +58,6 @@ function xhr_send(url_base, method, data, with_credentials) {
|
| function string_test() {
|
| return xhr_send(host_info['HTTP_ORIGIN'], 'POST', 'test string', false)
|
| .then(function(response) {
|
| - assert_equals(response.context, 'xmlhttprequest');
|
| assert_equals(response.method, 'POST');
|
| assert_equals(response.body, 'test string');
|
| });
|
| @@ -68,7 +67,6 @@ function blob_test() {
|
| return xhr_send(host_info['HTTP_ORIGIN'], 'POST', new Blob(['test blob']),
|
| false)
|
| .then(function(response) {
|
| - assert_equals(response.context, 'xmlhttprequest');
|
| assert_equals(response.method, 'POST');
|
| assert_equals(response.body, 'test blob');
|
| });
|
|
|