tor-browser

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

bug1552875.js (259B)


      1 class C {
      2    x = function(){};
      3    0 = function(){};
      4    ["y" + 0] = function(){};
      5 }
      6 
      7 let c = new C();
      8 assertEq(c["x"].name, "x");
      9 assertEq(c[0].name, "0");
     10 assertEq(c["y0"].name, "y0");
     11 
     12 if (typeof reportCompare === "function")
     13  reportCompare(true, true);