tor-browser

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

bug-1509420.js (265B)


      1 // bindtoAsyncStack shouldn't choke on CCWs of functions.
      2 
      3 var g = newGlobal();
      4 g.evaluate("function h() {}");
      5 bindToAsyncStack(g.h, { stack: saveStack() })();
      6 
      7 bindToAsyncStack(new Proxy(() => {}, { apply: () => {} }),
      8                 { stack: saveStack() })
      9 ();