mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
function test() {
|
|
function end() {
|
|
ok(true, "didn't time out?");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 40000);
|
|
}
|