mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 07:30:08 +00:00
13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
function done() {
|
|
ok(true, "timeout ran");
|
|
finish();
|
|
}
|
|
|
|
ok(OpenBrowserWindow(), "opened browser window");
|
|
// and didn't close it!
|
|
|
|
setTimeout(done, 10000);
|
|
}
|