tor-browser

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

15.2.3.13-0-3.js (531B)


      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    A newly created object using the Object contructor has its [[Extensible]]
      7    property set to true by default (15.2.2.1, step 8).
      8 es5id: 15.2.3.13-0-3
      9 description: >
     10    Object.isExtensible is true for objects created using the Object
     11    constructor
     12 ---*/
     13 
     14 var o = new Object();
     15 
     16 assert.sameValue(Object.isExtensible(o), true, 'Object.isExtensible(o)');
     17 
     18 reportCompare(0, 0);