Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
1 function test() {
2 waitForExplicitFinish();
3 function done() {
4 ok(true, "timeout ran");
5 finish();
6 }
7
8 ok(OpenBrowserWindow(), "opened browser window");
9 // and didn't close it!
10
11 setTimeout(done, 10000);
12 }