mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
|
function test() {
|
||
|
requestLongerTimeout(2);
|
||
|
function end() {
|
||
|
ok(true, "should not time out");
|
||
|
finish();
|
||
|
}
|
||
|
waitForExplicitFinish();
|
||
|
setTimeout(end, 40000);
|
||
|
}
|