tor-browser

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

S15.4.2.2_A1.1_T3.js (572B)


      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 esid: sec-array-len
      6 info: |
      7    The [[Prototype]] property of the newly constructed object
      8    is set to the original Array prototype object, the one that
      9    is the initial value of Array.prototype
     10 es5id: 15.4.2.2_A1.1_T3
     11 description: Checking use isPrototypeOf
     12 ---*/
     13 
     14 assert.sameValue(
     15  Array.prototype.isPrototypeOf(new Array(0)),
     16  true,
     17  'Array.prototype.isPrototypeOf(new Array(0)) must return true'
     18 );
     19 
     20 reportCompare(0, 0);