mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 21:38:30 +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);
|
|
}
|