mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 612311: Add some instrumentation. r=me
This commit is contained in:
parent
fa5db55f81
commit
72854663bd
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user