tor-browser

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

15.4.3.2-0-5.js (417B)


      1 // Copyright (c) 2012 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-array.isarray
      6 es5id: 15.4.3.2-0-5
      7 description: >
      8    Array.isArray return true if its argument is an Array
      9    (Array.prototype)
     10 ---*/
     11 
     12 assert.sameValue(Array.isArray(Array.prototype), true, 'Array.isArray(Array.prototype) must return true');
     13 
     14 reportCompare(0, 0);