Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 onmessage = function(evt) {
2 postMessage(postMessage('ignore') == undefined);
4 var id = setInterval(function() {}, 200);
5 postMessage(clearInterval(id) == undefined);
7 id = setTimeout(function() {}, 200);
8 postMessage(clearTimeout(id) == undefined);
10 postMessage(dump(42) == undefined);
12 postMessage('finished');
13 }