tor-browser

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

15.2.3.6-4-333-9.js (684B)


      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-333-9
      6 description: >
      7    Object.defineProperty - Named property 'P' with attributes
      8    [[Writable]]: true, [[Enumerable]]:true, [[Configurable]]:false is
      9    writable using simple assignment, 'A' is an Array Object
     10 ---*/
     11 
     12 var obj = [];
     13 
     14 Object.defineProperty(obj, "prop", {
     15  value: 2010,
     16  writable: true,
     17  enumerable: true,
     18  configurable: false
     19 });
     20 var verifyValue = (obj.prop === 2010);
     21 obj.prop = 1001;
     22 
     23 assert(verifyValue, 'verifyValue !== true');
     24 assert.sameValue(obj.prop, 1001, 'obj.prop');
     25 
     26 reportCompare(0, 0);