tor-browser

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

bug657225.js (301B)


      1 function reportCompare(expected, actual, description) { return  + ++actual + "'"; }
      2 var summary = 'Object.prototype.toLocaleString() should track Object.prototype.toString() ';
      3 var o = {
      4    toString: function () {}
      5 };
      6 expect = o;
      7 actual = o.toLocaleString();
      8 reportCompare(expect, actual, summary);