| Index: LayoutTests/fast/js/Promise-exception.html
|
| diff --git a/LayoutTests/fast/js/Promise-exception.html b/LayoutTests/fast/js/Promise-exception.html
|
| index 9f1707a8805244605e68595d3edbc7cedd2350f8..13409cf987b5bb6cbf6b87f42dee7bf327d39033 100644
|
| --- a/LayoutTests/fast/js/Promise-exception.html
|
| +++ b/LayoutTests/fast/js/Promise-exception.html
|
| @@ -11,9 +11,9 @@ description('Test Promise.');
|
|
|
| window.jsTestIsAsync = true;
|
|
|
| -var firstPromise = new Promise(function(resolver) {
|
| +var firstPromise = new Promise(function(resolve) {
|
| window.thisInInit = this;
|
| - resolver.fulfill('hello');
|
| + resolve('hello');
|
| });
|
|
|
| var secondPromise = firstPromise.then(function(result) {
|
|
|