tor-browser

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

S9.3.1_A14.js (428B)


      1 // Copyright 2009 the Sputnik authors.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 info: "The MV of SignedInteger ::: + DecimalDigits is the MV of DecimalDigits"
      6 es5id: 9.3.1_A14
      7 description: Compare Number('+1234567890') with +('1234567890')
      8 ---*/
      9 assert.sameValue(Number("+1234567890"), 1234567890, 'Number("+1234567890") must return 1234567890');
     10 
     11 reportCompare(0, 0);