content/base/test/script-1_bug597345.sjs

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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 }

mercurial