tor-browser

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

delete-global-var.js (190B)


      1 let assert = assertEq;
      2 
      3 this.x = "OK";
      4 this.y = "FAIL";
      5 
      6 for (let i = 0; i < 50; i++) {
      7  assert(x, "OK");
      8  if (i === 40) {
      9    this.x = "FAIL";
     10    delete this.x;
     11    this.x = "OK";
     12  }
     13 }