tor-browser

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

S15.1.2.3_A1_T1.js (368B)


      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 use ToString
      6 esid: sec-parsefloat-string
      7 description: Checking for boolean primitive
      8 ---*/
      9 
     10 assert.sameValue(parseFloat(true), NaN, "true");
     11 assert.sameValue(parseFloat(false), NaN, "false");
     12 
     13 reportCompare(0, 0);