tor-browser

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

S11.8.2_A4.1.js (1245B)


      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: If x is NaN, return false (if result in 11.8.5 is undefined, return false)
      6 es5id: 11.8.2_A4.1
      7 description: y is number primitive
      8 ---*/
      9 
     10 //CHECK#1
     11 if ((Number.NaN > 0) !== false) {
     12  throw new Test262Error('#1: (NaN > 0) === false');
     13 }
     14 
     15 //CHECK#2
     16 if ((Number.NaN > 1.1) !== false) {
     17  throw new Test262Error('#2: (NaN > 1.1) === false');
     18 }
     19 
     20 //CHECK#3
     21 if ((Number.NaN > -1.1) !== false) {
     22  throw new Test262Error('#3: (NaN > -1.1) === false');
     23 }
     24 
     25 //CHECK#4
     26 if ((Number.NaN > Number.NaN) !== false) {
     27  throw new Test262Error('#4: (NaN > NaN) === false');
     28 }
     29 
     30 //CHECK#5
     31 if ((Number.NaN > Number.POSITIVE_INFINITY) !== false) {
     32  throw new Test262Error('#5: (NaN > +Infinity) === false');
     33 }
     34 
     35 //CHECK#6
     36 if ((Number.NaN > Number.NEGATIVE_INFINITY) !== false) {
     37  throw new Test262Error('#6: (NaN > -Infinity) === false');
     38 }
     39 
     40 //CHECK#7
     41 if ((Number.NaN > Number.MAX_VALUE) !== false) {
     42  throw new Test262Error('#7: (NaN > Number.MAX_VALUE) === false');
     43 }
     44 
     45 //CHECK#8
     46 if ((Number.NaN > Number.MIN_VALUE) !== false) {
     47  throw new Test262Error('#8: (NaN > Number.MIN_VALUE) === false');
     48 }
     49 
     50 reportCompare(0, 0);