tor-browser

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

caller-property.js (181B)


      1 const { g } = wasmEvalText(`(module (func $f) (export "g" (func $f)))`).exports;
      2 
      3 function testCaller() {
      4  return g.caller;
      5 }
      6 
      7 assertErrorMessage(testCaller, TypeError, /caller/);