зеркало из https://github.com/mozilla/pjs.git
Bug 612311: Add some instrumentation. r=me
This commit is contained in:
Родитель
9475e04ad0
Коммит
583b3fefb7
|
@ -5,6 +5,7 @@
|
|||
var counter = 0;
|
||||
|
||||
var interval = setInterval(function() {
|
||||
dump("WorkerAlive\n");
|
||||
postMessage(++counter);
|
||||
}, 100);
|
||||
|
||||
|
|
|
@ -10,4 +10,4 @@ onmessage = function(event) {
|
|||
throw "No messages should reach me!";
|
||||
}
|
||||
|
||||
setInterval(function() { postMessage("Still alive!"); }, 100);
|
||||
setInterval(function() { dump("WorkerAlive\n"); postMessage("Still alive!"); }, 100);
|
||||
|
|
Загрузка…
Ссылка в новой задаче