mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
|
|
function test() {
|
||
|
|
waitForExplicitFinish();
|
||
|
|
ok(true, "ok called");
|
||
|
|
executeSoon(function() {
|
||
|
|
expectUncaughtException();
|
||
|
|
throw "this is a deliberately thrown exception";
|
||
|
|
});
|
||
|
|
executeSoon(function() {
|
||
|
|
finish();
|
||
|
|
});
|
||
|
|
}
|