blob: e9fe71d145983c527614223aebc603072ed166df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function test() {
waitForExplicitFinish();
function done() {
ok(true, "timeout ran");
finish();
}
ok(OpenBrowserWindow(), "opened browser window");
// and didn't close it!
setTimeout(done, 10000);
}
|