gecko/mobile/chrome/tests/browser_test.js

21 lines
433 B
JavaScript
Raw Normal View History

// Tests for the test functions in head.js
function test() {
waitForExplicitFinish();
testWaitForAndContinue();
}
function testWaitForAndContinue() {
waitForAndContinue(function() {
ok(true, "continues on success")
testWaitForAndContinue2();
}, function() true);
}
function testWaitForAndContinue2() {
waitForAndContinue(function() {
ok(true, "continues on failure");
finish();
}, function() false);
}