mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
eb97647b8e
r=gavin
13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
function test() {
|
|
function message() {
|
|
info("This should delay timeout");
|
|
}
|
|
function end() {
|
|
ok(true, "Should have not timed out, but notified long running test");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(message, 20000);
|
|
setTimeout(end, 40000);
|
|
}
|