mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 21:01:46 +00:00
9 lines
141 B
JavaScript
9 lines
141 B
JavaScript
function test() {
|
|
waitForExplicitFinish();
|
|
function done() {
|
|
ok(true, "timeout ran");
|
|
finish();
|
|
}
|
|
setTimeout(done, 10000);
|
|
}
|