| Index: LayoutTests/fast/js/Promise-then-without-callbacks.html
|
| diff --git a/LayoutTests/fast/js/Promise-then-without-callbacks.html b/LayoutTests/fast/js/Promise-then-without-callbacks.html
|
| index ccf7854e287570fae4971ebb3bb035a15d6d9bf4..a712fd4d4dea76c0a4a9efed83f31c310982b06f 100644
|
| --- a/LayoutTests/fast/js/Promise-then-without-callbacks.html
|
| +++ b/LayoutTests/fast/js/Promise-then-without-callbacks.html
|
| @@ -11,7 +11,7 @@ description('Test Promise.');
|
|
|
| window.jsTestIsAsync = true;
|
|
|
| -new Promise(function(r) { r.fulfill('hello'); })
|
| +new Promise(function(resolve) { resolve('hello'); })
|
| .then()
|
| .then(function(result) {
|
| window.result = result;
|
|
|