tor-browser

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

15.2.3.6-4-200.js (752B)


      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.6-4-200
      6 description: >
      7    Object.defineProperty - 'O' is an Array, 'name' is an array index
      8    named property, 'name' property doesn't exist in 'O', test
      9    [[Value]] of 'name' property of 'Attributes' is set as undefined
     10    if [[Value]] is absent in data descriptor 'desc' (15.4.5.1 step
     11    4.c)
     12 includes: [propertyHelper.js]
     13 ---*/
     14 
     15 var arrObj = [];
     16 
     17 Object.defineProperty(arrObj, "0", {
     18  writable: true,
     19  enumerable: true,
     20  configurable: false
     21 });
     22 
     23 verifyProperty(arrObj, "0", {
     24  value: undefined,
     25  writable: true,
     26  enumerable: true,
     27  configurable: false,
     28 });
     29 
     30 reportCompare(0, 0);