tor-browser

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

S15.1.2.3_A2_T8.js (739B)


      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-parsefloat-string
      7 description: "StrWhiteSpaceChar :: LS (U+2028)"
      8 ---*/
      9 
     10 //CHECK#1
     11 if (parseFloat("\u20281.1") !== parseFloat("1.1")) {
     12  throw new Test262Error('#1: parseFloat("\\u20281.1") === parseFloat("1.1"). Actual: ' + (parseFloat("\u20281.1")));
     13 }
     14 
     15 //CHECK#2
     16 if (parseFloat("\u2028\u2028-1.1") !== parseFloat("-1.1")) {
     17  throw new Test262Error('#2: parseFloat("\\u2028\\u2028-1.1") === parseFloat("-1.1"). Actual: ' + (parseFloat("\u2028\u2028-1.1")));
     18 }
     19 
     20 //CHECK#3
     21 assert.sameValue(parseFloat("\u2028"), NaN);
     22 
     23 reportCompare(0, 0);