Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | File Name: 15.1.2.6.js |
michael@0 | 9 | ECMA Section: 15.1.2.6 isNaN( x ) |
michael@0 | 10 | |
michael@0 | 11 | Description: Applies ToNumber to its argument, then returns true if |
michael@0 | 12 | the result isNaN and otherwise returns false. |
michael@0 | 13 | |
michael@0 | 14 | Author: christine@netscape.com |
michael@0 | 15 | Date: 28 october 1997 |
michael@0 | 16 | |
michael@0 | 17 | */ |
michael@0 | 18 | var SECTION = "15.1.2.6"; |
michael@0 | 19 | var VERSION = "ECMA_1"; |
michael@0 | 20 | var TITLE = "isNaN( x )"; |
michael@0 | 21 | var BUGNUMBER = "none"; |
michael@0 | 22 | |
michael@0 | 23 | startTest(); |
michael@0 | 24 | |
michael@0 | 25 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 26 | |
michael@0 | 27 | new TestCase( SECTION, "isNaN.length", 1, isNaN.length ); |
michael@0 | 28 | new TestCase( SECTION, "var MYPROPS=''; for ( var p in isNaN ) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in isNaN ) { MYPROPS+= p }; MYPROPS") ); |
michael@0 | 29 | new TestCase( SECTION, "isNaN.length = null; isNaN.length", 1, eval("isNaN.length=null; isNaN.length") ); |
michael@0 | 30 | new TestCase( SECTION, "delete isNaN.length", false, delete isNaN.length ); |
michael@0 | 31 | new TestCase( SECTION, "delete isNaN.length; isNaN.length", 1, eval("delete isNaN.length; isNaN.length") ); |
michael@0 | 32 | |
michael@0 | 33 | // new TestCase( SECTION, "isNaN.__proto__", Function.prototype, isNaN.__proto__ ); |
michael@0 | 34 | |
michael@0 | 35 | new TestCase( SECTION, "isNaN()", true, isNaN() ); |
michael@0 | 36 | new TestCase( SECTION, "isNaN( null )", false, isNaN(null) ); |
michael@0 | 37 | new TestCase( SECTION, "isNaN( void 0 )", true, isNaN(void 0) ); |
michael@0 | 38 | new TestCase( SECTION, "isNaN( true )", false, isNaN(true) ); |
michael@0 | 39 | new TestCase( SECTION, "isNaN( false)", false, isNaN(false) ); |
michael@0 | 40 | new TestCase( SECTION, "isNaN( ' ' )", false, isNaN( " " ) ); |
michael@0 | 41 | |
michael@0 | 42 | new TestCase( SECTION, "isNaN( 0 )", false, isNaN(0) ); |
michael@0 | 43 | new TestCase( SECTION, "isNaN( 1 )", false, isNaN(1) ); |
michael@0 | 44 | new TestCase( SECTION, "isNaN( 2 )", false, isNaN(2) ); |
michael@0 | 45 | new TestCase( SECTION, "isNaN( 3 )", false, isNaN(3) ); |
michael@0 | 46 | new TestCase( SECTION, "isNaN( 4 )", false, isNaN(4) ); |
michael@0 | 47 | new TestCase( SECTION, "isNaN( 5 )", false, isNaN(5) ); |
michael@0 | 48 | new TestCase( SECTION, "isNaN( 6 )", false, isNaN(6) ); |
michael@0 | 49 | new TestCase( SECTION, "isNaN( 7 )", false, isNaN(7) ); |
michael@0 | 50 | new TestCase( SECTION, "isNaN( 8 )", false, isNaN(8) ); |
michael@0 | 51 | new TestCase( SECTION, "isNaN( 9 )", false, isNaN(9) ); |
michael@0 | 52 | |
michael@0 | 53 | new TestCase( SECTION, "isNaN( '0' )", false, isNaN('0') ); |
michael@0 | 54 | new TestCase( SECTION, "isNaN( '1' )", false, isNaN('1') ); |
michael@0 | 55 | new TestCase( SECTION, "isNaN( '2' )", false, isNaN('2') ); |
michael@0 | 56 | new TestCase( SECTION, "isNaN( '3' )", false, isNaN('3') ); |
michael@0 | 57 | new TestCase( SECTION, "isNaN( '4' )", false, isNaN('4') ); |
michael@0 | 58 | new TestCase( SECTION, "isNaN( '5' )", false, isNaN('5') ); |
michael@0 | 59 | new TestCase( SECTION, "isNaN( '6' )", false, isNaN('6') ); |
michael@0 | 60 | new TestCase( SECTION, "isNaN( '7' )", false, isNaN('7') ); |
michael@0 | 61 | new TestCase( SECTION, "isNaN( '8' )", false, isNaN('8') ); |
michael@0 | 62 | new TestCase( SECTION, "isNaN( '9' )", false, isNaN('9') ); |
michael@0 | 63 | |
michael@0 | 64 | |
michael@0 | 65 | new TestCase( SECTION, "isNaN( 0x0a )", false, isNaN( 0x0a ) ); |
michael@0 | 66 | new TestCase( SECTION, "isNaN( 0xaa )", false, isNaN( 0xaa ) ); |
michael@0 | 67 | new TestCase( SECTION, "isNaN( 0x0A )", false, isNaN( 0x0A ) ); |
michael@0 | 68 | new TestCase( SECTION, "isNaN( 0xAA )", false, isNaN( 0xAA ) ); |
michael@0 | 69 | |
michael@0 | 70 | new TestCase( SECTION, "isNaN( '0x0a' )", false, isNaN( "0x0a" ) ); |
michael@0 | 71 | new TestCase( SECTION, "isNaN( '0xaa' )", false, isNaN( "0xaa" ) ); |
michael@0 | 72 | new TestCase( SECTION, "isNaN( '0x0A' )", false, isNaN( "0x0A" ) ); |
michael@0 | 73 | new TestCase( SECTION, "isNaN( '0xAA' )", false, isNaN( "0xAA" ) ); |
michael@0 | 74 | |
michael@0 | 75 | new TestCase( SECTION, "isNaN( 077 )", false, isNaN( 077 ) ); |
michael@0 | 76 | new TestCase( SECTION, "isNaN( '077' )", false, isNaN( "077" ) ); |
michael@0 | 77 | |
michael@0 | 78 | |
michael@0 | 79 | new TestCase( SECTION, "isNaN( Number.NaN )", true, isNaN(Number.NaN) ); |
michael@0 | 80 | new TestCase( SECTION, "isNaN( Number.POSITIVE_INFINITY )", false, isNaN(Number.POSITIVE_INFINITY) ); |
michael@0 | 81 | new TestCase( SECTION, "isNaN( Number.NEGATIVE_INFINITY )", false, isNaN(Number.NEGATIVE_INFINITY) ); |
michael@0 | 82 | new TestCase( SECTION, "isNaN( Number.MAX_VALUE )", false, isNaN(Number.MAX_VALUE) ); |
michael@0 | 83 | new TestCase( SECTION, "isNaN( Number.MIN_VALUE )", false, isNaN(Number.MIN_VALUE) ); |
michael@0 | 84 | |
michael@0 | 85 | new TestCase( SECTION, "isNaN( NaN )", true, isNaN(NaN) ); |
michael@0 | 86 | new TestCase( SECTION, "isNaN( Infinity )", false, isNaN(Infinity) ); |
michael@0 | 87 | |
michael@0 | 88 | new TestCase( SECTION, "isNaN( 'Infinity' )", false, isNaN("Infinity") ); |
michael@0 | 89 | new TestCase( SECTION, "isNaN( '-Infinity' )", false, isNaN("-Infinity") ); |
michael@0 | 90 | |
michael@0 | 91 | test(); |