mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
function test() {
|
|
function end() {
|
|
ok(true, "didn't time out?");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 40000);
|
|
}
|