| Index: LayoutTests/fast/js/resources/Promise-then-without-callbacks-in-workers.js
|
| diff --git a/LayoutTests/fast/js/resources/Promise-then-without-callbacks-in-workers.js b/LayoutTests/fast/js/resources/Promise-then-without-callbacks-in-workers.js
|
| index 799041d2f4b8ce197fa8a547edcc4592dee14913..056b0c2ee9d2f1df84c86689ff49ba7f8d6406df 100644
|
| --- a/LayoutTests/fast/js/resources/Promise-then-without-callbacks-in-workers.js
|
| +++ b/LayoutTests/fast/js/resources/Promise-then-without-callbacks-in-workers.js
|
| @@ -6,7 +6,7 @@ var global = this;
|
|
|
| global.jsTestIsAsync = true;
|
|
|
| -new Promise(function(r) { r.fulfill('hello'); })
|
| +new Promise(function(resolve) { resolve('hello'); })
|
| .then()
|
| .then(function(result) {
|
| global.result = result;
|
|
|