tor-browser

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

revocation-function-length.js (771B)


      1 // Copyright (C) 2015 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es6id: 26.2.2.1.1
      6 description: The `length` property of Proxy Revocation functions
      7 info: |
      8  The length property of a Proxy revocation function is 0.
      9 
     10  17 ECMAScript Standard Built-in Objects:
     11    Unless otherwise specified, the length property of a built-in Function
     12    object has the attributes { [[Writable]]: false, [[Enumerable]]: false,
     13    [[Configurable]]: true }.
     14 includes: [propertyHelper.js]
     15 features: [Proxy]
     16 ---*/
     17 
     18 var revocationFunction = Proxy.revocable({}, {}).revoke;
     19 
     20 verifyProperty(revocationFunction, "length", {
     21  value: 0,
     22  writable: false,
     23  enumerable: false,
     24  configurable: true
     25 });
     26 
     27 reportCompare(0, 0);