tor-browser

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

15.2.3.9-2-4.js (505B)


      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.9-2-4
      6 description: Object.freeze - Non-enumerable own properties of 'O' are frozen
      7 includes: [propertyHelper.js]
      8 ---*/
      9 
     10 var obj = {};
     11 
     12 Object.defineProperty(obj, "foo", {
     13  value: 10,
     14  enumerable: false,
     15  configurable: true
     16 });
     17 
     18 Object.freeze(obj);
     19 
     20 verifyProperty(obj, "foo", {
     21  writable: false,
     22  configurable: false,
     23 });
     24 
     25 reportCompare(0, 0);