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-190.js (679B)


      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-190
      6 description: >
      7    Object.defineProperties - 'O' is an Array, 'P' is an array index
      8    named property, 'P' is own accessor property  (15.4.5.1 step 4.c)
      9 ---*/
     10 
     11 var arr = [];
     12 
     13 Object.defineProperty(arr, "0", {
     14  get: function() {
     15    return 11;
     16  },
     17  configurable: false
     18 });
     19 assert.throws(TypeError, function() {
     20  Object.defineProperties(arr, {
     21    "0": {
     22      get: function() {
     23        return 12;
     24      },
     25      configurable: true
     26    }
     27  });
     28 });
     29 assert.sameValue(arr[0], 11, 'arr[0]');
     30 
     31 reportCompare(0, 0);