tor-browser

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

15.2.3.5-4-312.js (731B)


      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.5-4-312
      6 description: >
      7    Object.create - [[Enumerable]] is set as false if it is absent in
      8    accessor descriptor of one property in 'Properties' (8.12.9 step
      9    4.b)
     10 ---*/
     11 
     12 var isEnumerable = false;
     13 var newObj = Object.create({}, {
     14  prop: {
     15    set: function() {},
     16    get: function() {},
     17    configurable: true
     18  }
     19 });
     20 var hasProperty = newObj.hasOwnProperty("prop");
     21 for (var p in newObj) {
     22  if (p === "prop") {
     23    isEnumerable = true;
     24  }
     25 }
     26 
     27 assert(hasProperty, 'hasProperty !== true');
     28 assert.sameValue(isEnumerable, false, 'isEnumerable');
     29 
     30 reportCompare(0, 0);