tor-browser

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

15.2.3.6-4-540-9.js (970B)


      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-540-9
      6 description: >
      7    ES5 Attributes - Updating a named accessor property 'P' using
      8    simple assignment is successful, 'A' is an Array object (8.12.5
      9    step 5.b)
     10 ---*/
     11 
     12 var obj = [];
     13 
     14 obj.verifySetFunc = "data";
     15 var getFunc = function() {
     16  return obj.verifySetFunc;
     17 };
     18 
     19 var setFunc = function(value) {
     20  obj.verifySetFunc = value;
     21 };
     22 
     23 Object.defineProperty(obj, "prop", {
     24  get: getFunc,
     25  set: setFunc,
     26  enumerable: true,
     27  configurable: false
     28 });
     29 
     30 obj.prop = "overrideData";
     31 var propertyDefineCorrect = obj.hasOwnProperty("prop");
     32 var desc = Object.getOwnPropertyDescriptor(obj, "prop");
     33 
     34 assert(propertyDefineCorrect, 'propertyDefineCorrect !== true');
     35 assert.sameValue(desc.set, setFunc, 'desc.set');
     36 assert.sameValue(obj.verifySetFunc, "overrideData", 'obj.verifySetFunc');
     37 
     38 reportCompare(0, 0);