tor-browser

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

S15.1.2.2_A2_T6.js (668B)


      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: Operator remove leading StrWhiteSpaceChar
      6 esid: sec-parseint-string-radix
      7 description: "StrWhiteSpaceChar :: CR (U+000D)"
      8 ---*/
      9 
     10 assert.sameValue(parseInt("\u000D1"), parseInt("1"), 'parseInt("\\u000D1") must return the same value returned by parseInt("1")');
     11 assert.sameValue(parseInt("\u000D\u000D-1"), parseInt("-1"), 'parseInt("\\u000D\\u000D-1") must return the same value returned by parseInt("-1")');
     12 
     13 //CHECK#3
     14 assert.sameValue(parseInt("\u000D"), NaN, 'parseInt("\\u000D") must return NaN');
     15 
     16 reportCompare(0, 0);