12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
ok(true, "ok called");
|
|
executeSoon(function() {
|
|
expectUncaughtException();
|
|
throw "uncaught exception";
|
|
});
|
|
executeSoon(function() {
|
|
finish();
|
|
});
|
|
}
|