| Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/async-xhr-json-mime-type.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/async-xhr-json-mime-type.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/async-xhr-json-mime-type.html
|
| index 7776f6844bebadcd02c02b34ca3b389f45c45913..28240b1d4c3378766c697da1d164e876a2136bdb 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/async-xhr-json-mime-type.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/async-xhr-json-mime-type.html
|
| @@ -33,7 +33,7 @@ function test()
|
| {
|
| var request = lastRequest();
|
| reportRequest(request)
|
| - request.requestContent(step3);
|
| + request.requestContent().then(step3);
|
| }
|
| function step3()
|
| {
|
| @@ -47,7 +47,7 @@ function test()
|
| {
|
| var request = lastRequest();
|
| reportRequest(request);
|
| - request.requestContent(step5);
|
| + request.requestContent().then(step5);
|
| }
|
| function step5()
|
| {
|
|
|