mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
c6b58cf259
r=gavin
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);
|
|
}
|