tor-browser

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

testBug663789-2.js (207B)


      1 load(libdir + "evalInFrame.js");
      2 
      3 o = { toString:function() { return evalInFrame(1, "x") } }
      4 var x = 'C';
      5 var s = "aaaaaaaaaa".replace(/a/g, function() { var x = 'B'; return o });
      6 assertEq(s, "CCCCCCCCCC");