mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
var count = 0;
|
|
function timerFunction() {
|
|
if (++count == 30) {
|
|
close();
|
|
postMessage("ready");
|
|
while (true) { }
|
|
}
|
|
}
|
|
|
|
for (var i = 0; i < 10; i++) {
|
|
setInterval(timerFunction, 500);
|
|
}
|