tor-browser

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

S15.4.1_A1.1_T2.js (775B)


      1 // Copyright 2009 the Sputnik authors.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 info: |
      6    The [[Prototype]] property of the newly constructed object
      7    is set to the original Array prototype object, the one that
      8    is the initial value of Array.prototype
      9 es5id: 15.4.1_A1.1_T2
     10 description: Array.prototype.toString = Object.prototype.toString
     11 ---*/
     12 
     13 Array.prototype.toString = Object.prototype.toString;
     14 var x = Array();
     15 assert.sameValue(x.toString(), "[object Array]", 'x.toString() must return "[object Array]"');
     16 
     17 Array.prototype.toString = Object.prototype.toString;
     18 var x = Array(0, 1, 2);
     19 assert.sameValue(x.toString(), "[object Array]", 'x.toString() must return "[object Array]"');
     20 
     21 reportCompare(0, 0);