|
1 // timer has to be alive so it can't be eaten by the GC. |
|
2 var timer; |
|
3 |
|
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 } |