tor-browser

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

15.2.3.6-4-548.js (939B)


      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-548
      6 description: >
      7    ES5 Attributes - [[Get]] attribute of accessor property ([[Get]]
      8    is a Function, [[Set]] is a Function, [[Enumerable]] is false,
      9    [[Configurable]] is true) is the expected function
     10 ---*/
     11 
     12 var obj = {};
     13 
     14 var getFunc = function() {
     15  return 1001;
     16 };
     17 
     18 var verifySetFunc = "data";
     19 var setFunc = function(value) {
     20  verifySetFunc = value;
     21 };
     22 
     23 Object.defineProperty(obj, "prop", {
     24  get: getFunc,
     25  set: setFunc,
     26  enumerable: false,
     27  configurable: true
     28 });
     29 
     30 var propertyDefineCorrect = obj.hasOwnProperty("prop");
     31 var desc = Object.getOwnPropertyDescriptor(obj, "prop");
     32 
     33 assert(propertyDefineCorrect, 'propertyDefineCorrect !== true');
     34 assert.sameValue(desc.get, getFunc, 'desc.get');
     35 assert.sameValue(obj.prop, 1001, 'obj.prop');
     36 
     37 reportCompare(0, 0);