mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
433 B
JavaScript
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);
|
||
|
}
|