mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +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);
|
|
}
|