tor-browser

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

worker-function-function.js (173B)


      1 var fn = function() {
      2    postMessage('Function() function blocked');
      3 }
      4 try {
      5    fn = new Function("", "postMessage('Function() function allowed');");
      6 } catch (e) {}
      7 fn();