tor-browser

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

15.2.3.6-4-362.js (874B)


      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-362
      6 description: >
      7    ES5 Attributes - property ([[Writable]] is false, [[Enumerable]]
      8    is true, [[Configurable]] is false) is enumerable
      9 ---*/
     10 
     11 var propertyFound = false;
     12 
     13 var obj = {};
     14 Object.defineProperty(obj, "prop", {
     15  value: 2010,
     16  writable: false,
     17  enumerable: true,
     18  configurable: false
     19 });
     20 var propertyDefineCorrect = obj.hasOwnProperty("prop");
     21 var desc = Object.getOwnPropertyDescriptor(obj, "prop");
     22 for (var property in obj) {
     23  if (property === "prop") {
     24    propertyFound = true;
     25    break;
     26  }
     27 }
     28 
     29 assert(propertyFound, 'Property not found');
     30 assert(propertyDefineCorrect, 'propertyDefineCorrect !== true');
     31 assert.sameValue(desc.enumerable, true, 'desc.enumerable');
     32 
     33 reportCompare(0, 0);