mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 22:32:05 +00:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
ok(true, "ok called");
|
|
executeSoon(function() {
|
|
expectUncaughtException();
|
|
throw "this is a deliberately thrown exception";
|
|
});
|
|
executeSoon(function() {
|
|
finish();
|
|
});
|
|
}
|