tor-browser

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

name.js (317B)


      1 // Copyright (C) 2020 Rick Waldron.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-error.prototype.name
      6 description: >
      7  The initial value of Error.prototype.name is "Error".
      8 ---*/
      9 
     10 assert.sameValue(Error.prototype.name, 'Error');
     11 
     12 
     13 reportCompare(0, 0);