mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 21:29:07 +00:00
9 lines
150 B
JavaScript
9 lines
150 B
JavaScript
function test() {
|
|
function end() {
|
|
ok(false, "should have timed out");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 40000);
|
|
}
|