Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 // timer has to be alive so it can't be eaten by the GC.
2 var timer;
4 function handleRequest(request, response)
5 {
6 response.setHeader("Cache-Control", "no-cache", false);
7 response.setHeader("Content-Type", "text/javascript", false);
8 // The "stray" open comment at the end of the write is important!
9 response.write("document.write(\"<script charset='utf-8' src='script-2_bug597345.js'></script><!--\")");
10 response.processAsync();
11 timer = Components.classes["@mozilla.org/timer;1"]
12 .createInstance(Components.interfaces.nsITimer);
13 timer.initWithCallback(function() {
14 response.finish();
15 }, 200, Components.interfaces.nsITimer.TYPE_ONE_SHOT);
16 }