blob: e7a6c2426eaf40e3204df775c74920fa089c088b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// |reftest| skip-if(!xulRuntime.shell) -- needs getSelfHostedValue and drainJobQueue
function onResolved(val) {
result = 'resolved with ' + val;
}
function onRejected(val) {
result = 'rejected with ' + val;
}
// Replacing `Promise#then` shouldn't affect addPromiseReactions.
Promise.prototype.then = 1;
// Replacing Promise@@species shouldn't affect addPromiseReactions.
Object.defineProperty(Promise, Symbol.species, { get: function(){} });
// Replacing `Promise` shouldn't affect addPromiseReactions.
let PromiseCtor = Promise;
Promise = {};
let result;
let res;
let rej;
let p = new PromiseCtor(function(res_, rej_) { res = res_; rej = rej_; });
addPromiseReactions(p, onResolved, onRejected);
res('foo');
drainJobQueue();
assertEq(result, 'resolved with foo')
p = new PromiseCtor(function(res_, rej_) { res = res_; rej = rej_; });
addPromiseReactions(p, onResolved, onRejected);
rej('bar');
drainJobQueue();
assertEq(result, 'rejected with bar');
this.reportCompare && reportCompare(true,true);
|