forked from mirrors/gecko-dev
6 lines
156 B
JavaScript
6 lines
156 B
JavaScript
ok(true, "Assertion from a JS script!");
|
|
//ok(false, "test failure");
|
|
setTimeout(function() {
|
|
ok(true, "Assertion from setTimeout!");
|
|
finish();
|
|
}, 15);
|