tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_bug873335.html (386B)


      1 <html>
      2 <head>
      3 <meta charset="UTF-8">
      4 <script src="/tests/SimpleTest/SimpleTest.js"></script>
      5 <script>
      6 
      7 function boom()
      8 {
      9  (new AudioContext()).createScriptProcessor().hamster = {};
     10  SpecialPowers.forceCC();
     11  SpecialPowers.forceGC();
     12  ok(true, "test finished");
     13  SimpleTest.finish();
     14 }
     15 
     16 SimpleTest.waitForExplicitFinish();
     17 
     18 </script>
     19 </head>
     20 
     21 <body onload="boom();"></body>
     22 </html>