mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 23:19:50 +00:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
function test() {
|
|
requestLongerTimeout(2);
|
|
function end() {
|
|
ok(true, "should not time out");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 40000);
|
|
}
|