tor-browser

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

15.2.3.7-6-a-194.js (646B)


      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 es5id: 15.2.3.7-6-a-194
      6 description: >
      7    Object.defineProperties - 'O' is an Array, 'P' is an array index
      8    named property, 'P' property doesn't exist in 'O', test TypeError
      9    is thrown when 'O' is not extensible  (15.4.5.1 step 4.c)
     10 ---*/
     11 
     12 var arr = [];
     13 Object.preventExtensions(arr);
     14 assert.throws(TypeError, function() {
     15  Object.defineProperties(arr, {
     16    "0": {
     17      value: 1
     18    }
     19  });
     20 });
     21 assert.sameValue(arr.hasOwnProperty("0"), false, 'arr.hasOwnProperty("0")');
     22 
     23 reportCompare(0, 0);