tor-browser

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

verifyProperty-configurable-object.js (420B)


      1 // Copyright (C) 2019 Bocoup. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: >
      6    Objects whose specified property is configurable satisfy the assertion.
      7 includes: [propertyHelper.js]
      8 ---*/
      9 
     10 Object.defineProperty(this, 'Object', {
     11  configurable: true,
     12  value: Object
     13 });
     14 
     15 verifyProperty(this, 'Object', {
     16  configurable: true
     17 });
     18 
     19 reportCompare(0, 0);