Bug 612311: Add some instrumentation. r=me

This commit is contained in:
Kyle Huey 2012-03-17 13:07:28 -07:00
Родитель 9475e04ad0
Коммит 583b3fefb7
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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);