tor-browser

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

test-functions.js (284B)


      1 /**
      2 * This file contains various test functions called by the test script via `await invokeInTab("functionName");`.
      3 */
      4 function breakInEval() {
      5  eval(`
      6    debugger;
      7 
      8    window.evaledFunc = function() {
      9      var foo = 1;
     10      var bar = 2;
     11      return foo + bar;
     12    };
     13  `);
     14 }