tor-browser

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

15.2.3.13-2-21.js (571B)


      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 info: |
      6    Function.constructor
      7    Function.prototype
      8    Array.prototype
      9    String.prototype
     10    Boolean.prototype
     11    Number.prototype
     12    Date.prototype
     13    RegExp.prototype
     14    Error.prototype
     15 es5id: 15.2.3.13-2-21
     16 description: >
     17    Object.isExtensible returns true for all built-in objects
     18    (Error.prototype)
     19 ---*/
     20 
     21 var e = Object.isExtensible(Error.prototype);
     22 
     23 assert.sameValue(e, true, 'e');
     24 
     25 reportCompare(0, 0);