2015-12-30 20:15:01 +01:00
|
|
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
description: >
|
|
|
|
Resolving with an object with a "poisoned" `then` property from within the
|
|
|
|
executor function
|
|
|
|
es6id: 25.4.3.1
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-12-30 20:15:01 +01:00
|
|
|
[...]
|
|
|
|
8. Let resolvingFunctions be CreateResolvingFunctions(promise).
|
|
|
|
9. Let completion be Call(executor, undefined,
|
|
|
|
«resolvingFunctions.[[Resolve]], resolvingFunctions.[[Reject]]»).
|
|
|
|
|
|
|
|
25.4.1.3.2 Promise Resolve Functions
|
|
|
|
7. If Type(resolution) is not Object, then
|
|
|
|
a. Return FulfillPromise(promise, resolution).
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2015-12-30 20:15:01 +01:00
|
|
|
---*/
|
|
|
|
|
2016-06-24 19:04:21 +02:00
|
|
|
var returnValue = null;
|
2015-12-30 20:15:01 +01:00
|
|
|
var value = {};
|
|
|
|
var poisonedThen = Object.defineProperty({}, 'then', {
|
|
|
|
get: function() {
|
|
|
|
throw value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
var promise = new Promise(function(resolve) {
|
2016-06-24 19:04:21 +02:00
|
|
|
returnValue = resolve(poisonedThen);
|
2015-12-30 20:15:01 +01:00
|
|
|
});
|
|
|
|
|
2016-06-24 19:04:21 +02:00
|
|
|
assert.sameValue(returnValue, undefined, '"resolve" return value');
|
|
|
|
|
2015-12-30 20:15:01 +01:00
|
|
|
promise.then(function() {
|
2018-02-15 21:11:21 +01:00
|
|
|
$DONE('The promise should not be fulfilled.');
|
|
|
|
}, function(val) {
|
|
|
|
if (val !== value) {
|
|
|
|
$DONE('The promise should be fulfilled with the provided value.');
|
|
|
|
return;
|
|
|
|
}
|
2015-12-30 20:15:01 +01:00
|
|
|
|
2018-02-15 21:11:21 +01:00
|
|
|
$DONE();
|
|
|
|
});
|