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: 11.4.9.js |
michael@0 | 9 | ECMA Section: 11.4.9 Logical NOT Operator (!) |
michael@0 | 10 | Description: if the ToBoolean( VALUE ) result is true, return |
michael@0 | 11 | true. else return false. |
michael@0 | 12 | Author: christine@netscape.com |
michael@0 | 13 | Date: 7 july 1997 |
michael@0 | 14 | |
michael@0 | 15 | Static variables: |
michael@0 | 16 | none |
michael@0 | 17 | */ |
michael@0 | 18 | var SECTION = "11.4.9"; |
michael@0 | 19 | var VERSION = "ECMA_1"; |
michael@0 | 20 | startTest(); |
michael@0 | 21 | var TITLE = "Logical NOT operator (!)"; |
michael@0 | 22 | |
michael@0 | 23 | writeHeaderToLog( SECTION + " "+ TITLE); |
michael@0 | 24 | |
michael@0 | 25 | new TestCase( SECTION, "!(null)", true, !(null) ); |
michael@0 | 26 | new TestCase( SECTION, "!(var x)", true, !(eval("var x")) ); |
michael@0 | 27 | new TestCase( SECTION, "!(void 0)", true, !(void 0) ); |
michael@0 | 28 | |
michael@0 | 29 | new TestCase( SECTION, "!(false)", true, !(false) ); |
michael@0 | 30 | new TestCase( SECTION, "!(true)", false, !(true) ); |
michael@0 | 31 | new TestCase( SECTION, "!()", true, !(eval()) ); |
michael@0 | 32 | new TestCase( SECTION, "!(0)", true, !(0) ); |
michael@0 | 33 | new TestCase( SECTION, "!(-0)", true, !(-0) ); |
michael@0 | 34 | new TestCase( SECTION, "!(NaN)", true, !(Number.NaN) ); |
michael@0 | 35 | new TestCase( SECTION, "!(Infinity)", false, !(Number.POSITIVE_INFINITY) ); |
michael@0 | 36 | new TestCase( SECTION, "!(-Infinity)", false, !(Number.NEGATIVE_INFINITY) ); |
michael@0 | 37 | new TestCase( SECTION, "!(Math.PI)", false, !(Math.PI) ); |
michael@0 | 38 | new TestCase( SECTION, "!(1)", false, !(1) ); |
michael@0 | 39 | new TestCase( SECTION, "!(-1)", false, !(-1) ); |
michael@0 | 40 | new TestCase( SECTION, "!('')", true, !("") ); |
michael@0 | 41 | new TestCase( SECTION, "!('\t')", false, !("\t") ); |
michael@0 | 42 | new TestCase( SECTION, "!('0')", false, !("0") ); |
michael@0 | 43 | new TestCase( SECTION, "!('string')", false, !("string") ); |
michael@0 | 44 | new TestCase( SECTION, "!(new String(''))", false, !(new String("")) ); |
michael@0 | 45 | new TestCase( SECTION, "!(new String('string'))", false, !(new String("string")) ); |
michael@0 | 46 | new TestCase( SECTION, "!(new String())", false, !(new String()) ); |
michael@0 | 47 | new TestCase( SECTION, "!(new Boolean(true))", false, !(new Boolean(true)) ); |
michael@0 | 48 | new TestCase( SECTION, "!(new Boolean(false))", false, !(new Boolean(false)) ); |
michael@0 | 49 | new TestCase( SECTION, "!(new Array())", false, !(new Array()) ); |
michael@0 | 50 | new TestCase( SECTION, "!(new Array(1,2,3)", false, !(new Array(1,2,3)) ); |
michael@0 | 51 | new TestCase( SECTION, "!(new Number())", false, !(new Number()) ); |
michael@0 | 52 | new TestCase( SECTION, "!(new Number(0))", false, !(new Number(0)) ); |
michael@0 | 53 | new TestCase( SECTION, "!(new Number(NaN))", false, !(new Number(Number.NaN)) ); |
michael@0 | 54 | new TestCase( SECTION, "!(new Number(Infinity))", false, !(new Number(Number.POSITIVE_INFINITY)) ); |
michael@0 | 55 | |
michael@0 | 56 | test(); |
michael@0 | 57 |