tor-browser

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

bug1711414.js (220B)


      1 function bar() { this[0] = "overwritten"; }
      2 
      3 function foo() {
      4    bar.apply(arguments, arguments);
      5    return arguments[0];
      6 }
      7 
      8 with ({}) {}
      9 for (var i = 0; i < 100; i++) {
     10    assertEq(foo("original"), "overwritten");
     11 }