tor-browser

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

15.2.3.6-4-523.js (845B)


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