| Index: LayoutTests/fast/js/Promise-resolve-with-then-reject.html
|
| diff --git a/LayoutTests/fast/js/Promise-resolve-with-then-reject.html b/LayoutTests/fast/js/Promise-resolve-with-then-reject.html
|
| index d98b84bfeaa9668b9eccab297ba756c91a17a059..c9c53ac26ffc85c4e2a7811b6e1992d004899b4b 100644
|
| --- a/LayoutTests/fast/js/Promise-resolve-with-then-reject.html
|
| +++ b/LayoutTests/fast/js/Promise-resolve-with-then-reject.html
|
| @@ -19,7 +19,7 @@ var value = {
|
| callback = rejectCallback;
|
| }
|
| };
|
| -var promise = new Promise(function(r) { r.resolve(value); });
|
| +var promise = new Promise(function(resolve) { resolve(value); });
|
|
|
| promise.then(function(result) {
|
| testFailed('fulfilled');
|
|
|