tor-browser

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

15.2.3.6-4-314-1.js (1029B)


      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-314-1
      6 description: >
      7    Object.defineProperty - 'O' is an Arguments object of a function
      8    that has formal parameters, 'P' is property, and 'desc' is
      9    accessor descriptor, test 'P' is defined in 'O' with all correct
     10    attribute values (10.6 [[DefineOwnProperty]] step 3)
     11 includes: [propertyHelper.js]
     12 ---*/
     13 
     14 (function(a, b, c) {
     15  function getFunc() {
     16    return "getFunctionString";
     17  }
     18 
     19  function setFunc(value) {
     20    this.testgetFunction = value;
     21  }
     22  Object.defineProperty(arguments, "genericProperty", {
     23    get: getFunc,
     24    set: setFunc,
     25    enumerable: true,
     26    configurable: true
     27  });
     28  verifyEqualTo(arguments, "genericProperty", getFunc());
     29 
     30  verifyWritable(arguments, "genericProperty", "testgetFunction");
     31 
     32  verifyProperty(arguments, "genericProperty", {
     33    enumerable: true,
     34    configurable: true,
     35  });
     36 }(1, 2, 3));
     37 
     38 reportCompare(0, 0);