mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
|
|
postMessage("Done", "*");
|
||
|
|
|
||
|
|
var p = new Promise(function(resolve, reject) {
|
||
|
|
TestFunctions.throwUncatchableException();
|
||
|
|
ok(false, "Shouldn't get here!");
|
||
|
|
}).catch(function(exception) {
|
||
|
|
ok(false, "Shouldn't get here!");
|
||
|
|
});
|
||
|
|
ok(false, "Shouldn't get here!");
|