mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-20 12:18:43 +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);
|
|
}
|