mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 16:29:17 +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);
|
|
}
|