mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-16 02:39:13 +00:00
9 lines
141 B
JavaScript
9 lines
141 B
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
function done() {
|
|
ok(true, "timeout ran");
|
|
finish();
|
|
}
|
|
setTimeout(done, 10000);
|
|
}
|