mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
Bug 1317376 - Part 2: Detect Promise self-resolution when resolving through the Promise resolving fast path.
Tag #1287
This commit is contained in:
parent
300f97150c
commit
70cbae88ea
2 changed files with 34 additions and 18 deletions
|
|
@ -5,6 +5,7 @@ if (!this.Promise) {
|
|||
quit(0);
|
||||
}
|
||||
|
||||
// Resolve Promise with itself by directly calling the "Promise Resolve Function".
|
||||
let resolve;
|
||||
let promise = new Promise(function(x) { resolve = x; });
|
||||
resolve(promise)
|
||||
|
|
@ -20,4 +21,23 @@ drainJobQueue()
|
|||
assertEq(results.length, 1);
|
||||
assertEq(results[0], "rejected");
|
||||
|
||||
// Resolve Promise with itself when the "Promise Resolve Function" is called
|
||||
// from (the fast path in) PromiseReactionJob.
|
||||
results = [];
|
||||
|
||||
promise = new Promise(x => { resolve = x; });
|
||||
let promise2 = promise.then(() => promise2);
|
||||
|
||||
promise2.then(() => assertEq(true, false, "not reached"), res => {
|
||||
assertEq(res instanceof TypeError, true);
|
||||
results.push("rejected");
|
||||
});
|
||||
|
||||
resolve();
|
||||
|
||||
drainJobQueue();
|
||||
|
||||
assertEq(results.length, 1);
|
||||
assertEq(results[0], "rejected");
|
||||
|
||||
this.reportCompare && reportCompare(0, 0, "ok");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue