gecko/mobile/chrome/tests/browser_test.js
Matt Brubeck 1cd8ef97e3 Bug 602039 - Fix waitForAndContinue test function [r=mfinkle]
--HG--
extra : rebase_source : a530c1502e2a5dcf6a423e333fa85cd23234aa74
2010-10-05 17:42:55 -07:00

21 lines
433 B
JavaScript

// 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);
}