tor-browser

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

15.2.3.6-4-79.js (619B)


      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-79
      6 description: >
      7    Object.defineProperty - both desc.enumerable and name.enumerable
      8    are boolean values with the same value (8.12.9 step 6)
      9 includes: [propertyHelper.js]
     10 ---*/
     11 
     12 
     13 var obj = {};
     14 
     15 Object.defineProperty(obj, "foo", {
     16  enumerable: false
     17 });
     18 
     19 Object.defineProperty(obj, "foo", {
     20  enumerable: false
     21 });
     22 
     23 verifyProperty(obj, "foo", {
     24  value: undefined,
     25  writable: false,
     26  enumerable: false,
     27  configurable: false,
     28 });
     29 
     30 reportCompare(0, 0);